aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-01-14 16:31:39 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-01-14 16:31:39 -0800
commit146687e64e9be926816dec8c9f9797f17821a543 (patch)
treecc165867defbc521adf6bd0cb265d8102887ece7
parentc585b1f0ac05117e24220f44269e149582282212 (diff)
only show asm warnings in asm
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 0b333cd6..68ed88f2 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -276,7 +276,7 @@ process(sys.argv[1])
os.chdir(cwd)
out = open(stdout, 'r').read()
err = open(stderr, 'r').read()
- if engine == SPIDERMONKEY_ENGINE:
+ if engine == SPIDERMONKEY_ENGINE and Settings.ASM_JS:
if 'Successfully compiled asm.js code' in err:
print >> sys.stderr, "[was asm.js'ified]"
else: