aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner.py')
-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: