summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--testsuite/driver/testlib.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py
index 68a9208a4b..5a587a7264 100644
--- a/testsuite/driver/testlib.py
+++ b/testsuite/driver/testlib.py
@@ -1407,11 +1407,8 @@ def interpreter_run( name, way, extra_hc_opts, compile_only, top_mod ):
stdin_file = qualify(name, 'stdin')
if os.path.exists(stdin_file):
- stdin = open(stdin_file, 'r')
os.system('cat ' + stdin_file + ' >>' + qscriptname)
- script.close()
-
flags = ' '.join(get_compiler_flags(override_flags=None, noforce=False) +
config.way_flags(name)[way])