Skip to content

Commit 606f722

Browse files
committed
Disable async EM_ASM tests for now, until a new compiler build is tagged
1 parent 3e23ec9 commit 606f722

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_core.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,6 +1613,7 @@ def test_em_asm_2(self):
16131613
# test cases are added to test_em_asm_2.cpp for EM_ASM, they will also get tested in MAIN_THREAD_EM_ASM form.
16141614
@no_wasm_backend('Proxying EM_ASM calls is not yet implemented in Wasm backend')
16151615
def test_main_thread_em_asm(self):
1616+
return self.skip('TODO: Enable me when we have tagged new compiler build')
16161617
src = open(path_from_root('tests', 'core', 'test_em_asm_2.cpp'), 'r').read()
16171618
test_file = 'src.cpp'
16181619
open(test_file, 'w').write(src.replace('EM_ASM', 'MAIN_THREAD_EM_ASM'))
@@ -1626,6 +1627,7 @@ def test_main_thread_em_asm(self):
16261627

16271628
@no_wasm_backend('Proxying EM_ASM calls is not yet implemented in Wasm backend')
16281629
def test_main_thread_async_em_asm(self):
1630+
return self.skip('TODO: Enable me when we have tagged new compiler build')
16291631
self.do_run_in_out_file_test('tests', 'core', 'test_main_thread_async_em_asm')
16301632
self.do_run_in_out_file_test('tests', 'core', 'test_main_thread_async_em_asm', force_c=True)
16311633

0 commit comments

Comments
 (0)