diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-19 13:55:46 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-19 13:55:46 -0700 |
commit | b047e22b770a01b828e143a83cc5144227d7f70d (patch) | |
tree | 8d43b6a7ee285dbc597ced05f7d9f1d3163390f0 | |
parent | ba7a643dcb47b572d7509753e7c3a84625e5ca54 (diff) |
hide embind test output unless an error occurred
-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: |