diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-12 21:16:07 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-12 21:16:07 -0800 |
commit | c9bdd33a113b4236c60b61abaec4e5e8a8b89028 (patch) | |
tree | 6ccf40ed4f4adb577faa4708e370fca03a528faf /tests/test_core.py | |
parent | 4caba7e02ab1e3dcae31114fd119544c7e106e70 (diff) |
don't print anything in exit(); fixes #1791
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 37179ff1..ecd3923e 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -2908,7 +2908,7 @@ Exiting setjmp function, level: 0, prev_jmp: -1 ''') self.emcc_args += ['--pre-js', 'pre.js'] - self.do_run(src, '''reported\nexit(1) called\nExit Status: 1\npostRun\nok.\n''') + self.do_run(src, '''reported\nExit Status: 1\npostRun\nok.\n''') def test_class(self): src = ''' @@ -10517,7 +10517,7 @@ def process(filename): Module.callMain(); ''') self.emcc_args += ['-s', 'INVOKE_RUN=0', '--post-js', 'post.js'] - self.do_run(src, 'hello, world!\nexit(118) called\ncleanup\nI see exit status: 118') + self.do_run(src, 'hello, world!\ncleanup\nI see exit status: 118') def test_gc(self): if self.emcc_args == None: return self.skip('needs ta2') |