diff options
| author | Alon Zakai <alonzakai@gmail.com> | 2013-03-14 10:56:17 -0700 | 
|---|---|---|
| committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-14 10:56:17 -0700 | 
| commit | e28105b8e3767ac6691bd6410a484d0fb0a6437e (patch) | |
| tree | 09688267356268e7d11130143c477f465106fd3c | |
| parent | e77dae25c0bd7208aeaf0e9071f64a2e0dc981ec (diff) | |
notice asm link errors in benchmarks
| -rwxr-xr-x | tests/runner.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 5a7cf21c..1d0ed6f0 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11643,7 +11643,8 @@ elif 'benchmark' in str(sys.argv):          start = time.time()          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 +          if 'asm.js link error' not in js_output: +            print "[%s was asm.js'ified]" % name          curr = time.time()-start          times.append(curr)          total_times[tests_done] += curr  | 
