bolt/deps/llvm-18.1.8/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py

11 lines
153 B
Python
Raw Normal View History

2025-02-14 19:21:04 +01: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()