diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-14 15:40:33 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-14 15:40:33 -0800 |
commit | bd80b6f65a7e741e8c3892f726b4d94de526dab3 (patch) | |
tree | c0eda915cd6bf675a4abbe6c8b48bac2b00563d4 /tests | |
parent | abeaf415d53fde1197b7591ca9b6f85a69e45034 (diff) |
fix test runner asm output
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index c18b9689..0b333cd6 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10563,7 +10563,7 @@ elif 'benchmark' in str(sys.argv): times = [] for i in range(TEST_REPS): start = time.time() - js_output = self.run_generated_code(JS_ENGINE, final_filename, args, check_timeout=False) + js_output = run_js(final_filename, engine=JS_ENGINE, args=args, stderr=PIPE, full_output=True) if i == 0 and 'Successfully compiled asm.js code' in js_output: print "[%s was asm.js'ified]" % name curr = time.time()-start |