diff options
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 59b1647f..d7a7003f 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10250,8 +10250,7 @@ f.close() assert os.path.exists(self.in_dir('a.out.js')) == (not fail) if not fail: output = run_js(self.in_dir('a.out.js'), stdout=PIPE, stderr=PIPE, full_output=True) - print >> sys.stderr, output - assert "FAIL" not in output + assert "FAIL" not in output, output def test_llvm_nativizer(self): try: |