diff options
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index f8b077b7..e5330e19 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -5248,6 +5248,7 @@ def process(filename): def test_asm_pgo(self): if not Settings.ASM_JS: return self.skip('this is a test for PGO for asm (NB: not *in* asm)') + if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') src = open(path_from_root('tests', 'hello_libcxx.cpp')).read() output = 'hello, world!' @@ -5320,6 +5321,7 @@ def process(filename): def test_add_function(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.INVOKE_RUN = 0 Settings.RESERVED_FUNCTION_POINTERS = 1 |