repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[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
blob
357089d4899b5223370081e552e158c1aa957a31
1
#!/usr/bin/env python
2
3
import
sys
4
5
6
sys
.
stdout
.
write
(
"a line on stdout
\n
"
)
7
sys
.
stdout
.
flush
()
8
9
sys
.
stderr
.
write
(
"a line on stderr
\n
"
)
10
sys
.
stderr
.
flush
()