diff options
-rwxr-xr-x | emcc | 2 | ||||
-rwxr-xr-x | tests/runner.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1490,7 +1490,7 @@ try: final += '.tr.js' posix = True if not shared.WINDOWS else False logging.debug('applying transform: %s' % js_transform) - execute(shlex.split(js_transform, posix=posix) + [os.path.abspath(final)]) + subprocess.check_call(shlex.split(js_transform, posix=posix) + [os.path.abspath(final)]) if DEBUG: save_intermediate('transformed') js_transform_tempfiles = [final] diff --git a/tests/runner.py b/tests/runner.py index 479f4824..10478b6a 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -9582,7 +9582,7 @@ def process(filename): self.do_run(src, '*nothingatall*', post_build=post) except Exception, e: # This test *should* fail - assert 'Assertion failed' in str(e), str(e) + assert 'Assertion failed: x < 15' in str(e), str(e) def test_source_map(self): if Settings.USE_TYPED_ARRAYS != 2: return self.skip("doesn't pass without typed arrays") |