Skip to content

Commit 6aeb0a4

Browse files
committed
disable some tests in fastcomp
1 parent ae3605d commit 6aeb0a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_core.py

+2
Original file line numberDiff line numberDiff line change
@@ -5248,6 +5248,7 @@ def test(expected, args=[], no_build=False):
52485248

52495249
def test_asm_pgo(self):
52505250
if not Settings.ASM_JS: return self.skip('this is a test for PGO for asm (NB: not *in* asm)')
5251+
if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp')
52515252

52525253
src = open(path_from_root('tests', 'hello_libcxx.cpp')).read()
52535254
output = 'hello, world!'
@@ -5320,6 +5321,7 @@ def test_exported_response(self):
53205321

53215322
def test_add_function(self):
53225323
if self.emcc_args is None: return self.skip('requires emcc')
5324+
if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp')
53235325

53245326
Settings.INVOKE_RUN = 0
53255327
Settings.RESERVED_FUNCTION_POINTERS = 1

0 commit comments

Comments
 (0)