diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 17:26:18 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 17:44:29 -0800 |
commit | ce15abc1d356fda7a5509d449c9c18623a9b4ea3 (patch) | |
tree | c3d88df30dfa48970449b33e969ce4272aeb3fa6 /tests | |
parent | 9d10b207a5145e6427b7c774945dd3aa25577f76 (diff) |
enable more tests in fastcomp
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_core.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 8c4d47a8..f27491c7 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4665,7 +4665,7 @@ return malloc(size); def test_lua(self): if self.emcc_args is None: return self.skip('requires emcc') if Settings.QUANTUM_SIZE == 1: return self.skip('TODO: make this work') - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') + if os.environ.get('EMCC_FAST_COMPILER') == '1': Settings.DISABLE_EXCEPTION_CATCHING = 1 for aggro in ([0, 1] if Settings.ASM_JS and '-O2' in self.emcc_args else [0]): print aggro @@ -4686,7 +4686,7 @@ return malloc(size); def test_freetype(self): if self.emcc_args is None: return self.skip('requires emcc') if Settings.QUANTUM_SIZE == 1: return self.skip('TODO: Figure out and try to fix') - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') + if os.environ.get('EMCC_FAST_COMPILER') == '1': Settings.DISABLE_EXCEPTION_CATCHING = 1 assert 'asm2g' in test_modes if self.run_name == 'asm2g': @@ -4832,7 +4832,7 @@ def process(filename): def test_poppler(self): if self.emcc_args is None: return self.skip('very slow, we only do this in emcc runs') - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') + if os.environ.get('EMCC_FAST_COMPILER') == '1': Settings.DISABLE_EXCEPTION_CATCHING = 1 Settings.CORRECT_OVERFLOWS = 1 Settings.CORRECT_SIGNS = 1 |