summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py')
-rw-r--r--gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py b/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
new file mode 100644
index 00000000000..9463251d823
--- /dev/null
+++ b/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+
+import sys
+
+
+sys.stderr.write("a line on stderr\n")
+sys.stderr.flush()