aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-01-14 18:14:13 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-01-14 18:14:13 -0800
commita90973a03a8aa6d800e7d408a4d7446ead8c5745 (patch)
tree23dc81de8e052b33b16da4b0e61c62b832648295
parentcb50975f3a139fa7bfe72b3df5a422dfa7a24b25 (diff)
show error on asm link failures too
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 68ed88f2..6e76d061 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -277,7 +277,7 @@ process(sys.argv[1])
out = open(stdout, 'r').read()
err = open(stderr, 'r').read()
if engine == SPIDERMONKEY_ENGINE and Settings.ASM_JS:
- if 'Successfully compiled asm.js code' in err:
+ if 'Successfully compiled asm.js code' in err and 'asm.js link error' not in err:
print >> sys.stderr, "[was asm.js'ified]"
else:
print >> sys.stderr, "[did NOT asm.js'ify]"