We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e8bfde commit 8bcddd2Copy full SHA for 8bcddd2
tests/run_tests.py
@@ -69,9 +69,7 @@ def run_testcase(suite: str, testcase: str):
69
with open("{0}.out".format(qtest), "w") as actual_output_file:
70
actual_output_file.write(LICENSE_PREFIX)
71
72
- result = os.system(
73
- "{0} {1} 2>> {1}.out >> {1}.out".format(get_interpreter(), qtest)
74
- )
+ result = os.system("{0} {1} >> {1}.out 2>&1".format(get_interpreter(), qtest))
75
76
with open("%s.out" % qtest) as actual_output_file:
77
actual_output = actual_output_file.read()
0 commit comments