aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-01-10 18:21:30 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-01-10 18:21:30 -0800
commit6ee92f8d2128edf5458a8993809d9e15d105e931 (patch)
tree760ff89d8444bc24cd37e4aeb6315939bd8b816e
parente9ce1f707774c816e4a2697910fdaa478e7f9dfd (diff)
enable more exceptions tests in fastcomp
-rw-r--r--tests/test_core.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index df08b217..e617caad 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -1186,7 +1186,6 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co
def test_exceptions(self):
if Settings.QUANTUM_SIZE == 1: return self.skip("we don't support libcxx in q1")
if self.emcc_args is None: return self.skip('need emcc to add in libcxx properly')
- if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp')
Settings.EXCEPTION_DEBUG = 1
@@ -1275,7 +1274,6 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co
def test_exception_2(self):
if self.emcc_args is None: return self.skip('need emcc to add in libcxx properly')
- if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp')
Settings.DISABLE_EXCEPTION_CATCHING = 0
test_path = path_from_root('tests', 'core', 'test_exception_2')
@@ -1358,7 +1356,6 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co
def test_std_exception(self):
if self.emcc_args is None: return self.skip('requires emcc')
- if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp')
Settings.DISABLE_EXCEPTION_CATCHING = 0
self.emcc_args += ['-s', 'SAFE_HEAP=0']