diff options
author | Dan Gohman <sunfish@google.com> | 2014-02-24 08:47:28 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@google.com> | 2014-02-25 11:58:53 -0800 |
commit | 8b3529dd9e46fd40021d06df34bdddce5900a0d6 (patch) | |
tree | 83f4739d26e6683b69bbcf50a8176e4497b8fecc | |
parent | de5271f3c1ffce1cd91496fddde37708662c92c8 (diff) |
Make the "did NOT asm.js'ify" error message more
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index ba43e15a..c13a16eb 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -254,7 +254,7 @@ process(sys.argv[1]) if 'uccessfully compiled asm.js code' in err and 'asm.js link error' not in err: print >> sys.stderr, "[was asm.js'ified]" elif 'asm.js' in err: # if no asm.js error, then not an odin build - raise Exception("did NOT asm.js'ify") + raise Exception("did NOT asm.js'ify: " + err) err = '\n'.join(filter(lambda line: 'uccessfully compiled asm.js code' not in line, err.split('\n'))) return err |