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 e99358b commit 4be8a33Copy full SHA for 4be8a33
test/run-tests.py
@@ -55,9 +55,8 @@ def test (filename):
55
else:
56
print ("{0} out of {1} tests failed".format (failed, failed+passed))
57
# load test framework and let gforth show any warnings or errors
58
- print ("GForth compiler errors/warnings/ramblings on test framework:\n--")
59
- print (os.popen ("bash -c 'gforth ../testest.4th -e \".\\\" <EOF>\\\" cr bye\"' >&2").readlines ())
60
- print ("--")
+ print ("GForth compiler errors/warnings on test framework:\n--")
+ print (''.join (os.popen ("bash -c 'gforth ../testest.4th -e bye' >&2"))+"--")
61
62
# restore directory
63
os.chdir (prevdir)
0 commit comments