diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-09 11:09:59 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-09 11:09:59 -0800 |
commit | 4dd19ff1149a9602783c998260c24729e64f7d24 (patch) | |
tree | 307d0e17d2a56479ff06f2d2a3d825cbd36deca9 | |
parent | b6c33b1fb56211577defda3509129e2395128280 (diff) |
mention asm.js'ing in benchmarks
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index d5662375..9c903f20 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10496,6 +10496,8 @@ elif 'benchmark' in str(sys.argv): for i in range(TEST_REPS): start = time.time() js_output = self.run_generated_code(JS_ENGINE, final_filename, args, check_timeout=False) + if i == 0 and 'Successfully compiled asm.js code' in js_output: + print "[%s was asm.js'ified]" % name curr = time.time()-start times.append(curr) total_times[tests_done] += curr |