diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-10 21:01:10 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-10 21:01:10 -0700 |
commit | 5bb74d2c5ed57a7b52e1a3d01404edfb7a9945ea (patch) | |
tree | c74c62388978ea402f012c0fcf21cf55f7560906 /tests | |
parent | 6f95f937bb4a805081f7ddb07fa8c8d5da7d1d1c (diff) |
make test runner more lenient in parsing asm.js compilation message
Diffstat (limited to 'tests')
-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 f7a0fa26..9a8670b6 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -275,7 +275,7 @@ process(sys.argv[1]) 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") - err = '\n'.join(filter(lambda line: 'successfully compiled asm.js code' not in line, err.split('\n'))) + err = '\n'.join(filter(lambda line: 'uccessfully compiled asm.js code' not in line, err.split('\n'))) return err def run_generated_code(self, engine, filename, args=[], check_timeout=True, output_nicerizer=None): |