aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-01-07 11:53:19 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-01-07 11:53:19 -0800
commit904d9b751241bfa1e1a334877c8489a27e535892 (patch)
tree148ca1adb44baf0ee431f57b7db3382e3a821218 /tests
parentcdbb625213020804fee0526c50b51b83f45588fc (diff)
disable EXCEPTION_DEBUG by default
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runner.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 2ba1ede1..e55a3f60 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -2366,7 +2366,6 @@ Exception execution path of first function! 1
if '-O2' in self.emcc_args:
self.emcc_args += ['--closure', '1'] # Use closure here for some additional coverage
- Settings.EXCEPTION_DEBUG = 0 # Messes up expected output.
Settings.DISABLE_EXCEPTION_CATCHING = 0
src = r'''
@@ -2406,14 +2405,12 @@ Exception execution path of first function! 1
def test_typed_exceptions(self):
Settings.DISABLE_EXCEPTION_CATCHING = 0
Settings.SAFE_HEAP = 0 # Throwing null will cause an ignorable null pointer access.
- Settings.EXCEPTION_DEBUG = 0 # Messes up expected output.
src = open(path_from_root('tests', 'exceptions', 'typed.cpp'), 'r').read()
expected = open(path_from_root('tests', 'exceptions', 'output.txt'), 'r').read()
self.do_run(src, expected)
def test_multiexception(self):
Settings.DISABLE_EXCEPTION_CATCHING = 0
- Settings.EXCEPTION_DEBUG = 0 # Messes up expected output.
src = r'''
#include <stdio.h>