[llvm] [cmake] Add possibility to use ChooseMSVCCRT.cmake when include LLVM library
[llvm-core.git] / utils / lit / tests / Inputs / shtest-shell / write-to-stdout-and-stderr.py
blob357089d4899b5223370081e552e158c1aa957a31
1 #!/usr/bin/env python
3 import sys
6 sys.stdout.write("a line on stdout\n")
7 sys.stdout.flush()
9 sys.stderr.write("a line on stderr\n")
10 sys.stderr.flush()