aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-01-14 13:37:38 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-01-14 13:37:38 -0800
commitf677883fa20aa183fb9f578f6262d400193e6ec7 (patch)
tree3579938edf123a569e9c7de529341c546f2fe619 /tests
parent90e6bfdc380061d7f0c3f6873329f1abed85bde6 (diff)
print asm parsing to stderr
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 74c75b28..a9ff5575 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -278,9 +278,9 @@ process(sys.argv[1])
err = open(stderr, 'r').read()
if engine == SPIDERMONKEY_ENGINE:
if 'Successfully compiled asm.js code' in err:
- print "[was asm.js'ified]"
+ print >> sys.stderr, "[was asm.js'ified]"
else:
- print "[failed to asm.js'ify]"
+ print >> sys.stderr, "[failed to asm.js'ify]"
if output_nicerizer:
ret = output_nicerizer(out, err)
else: