llvm-for-llvmta/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py

11 lines
153 B
Python
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
#!/usr/bin/env python
import sys
sys.stdout.write("a line on stdout\n")
sys.stdout.flush()
sys.stderr.write("a line on stderr\n")
sys.stderr.flush()