summaryrefslogtreecommitdiff
path: root/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py')
-rw-r--r--utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py b/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
new file mode 100644
index 000000000000..9463251d823a
--- /dev/null
+++ b/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()