Skip to content

Commit 4d4897f

Browse files
authored
Restore test_dyncall_pointers_legacy test. NFC (#24379)
I accidentally disabled this unconditionally in #24326
1 parent 002c63a commit 4d4897f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7051,8 +7051,8 @@ def test_dyncall_specific(self):
70517051
'legacy': (['-sDYNCALLS'],),
70527052
})
70537053
def test_dyncall_pointers(self, args):
7054-
if args:
7055-
self.skipTest('dynCallLegacy is not yet compatible with WASM_ESM_INTEGRATION')
7054+
if args and self.get_setting('MODULARIZE') == 'instance' or self.get_setting('WASM_ESM_INTEGRATION'):
7055+
self.skipTest('dynCallLegacy is not yet compatible with MODULARIZE=instance')
70567056
self.do_core_test('test_dyncall_pointers.c', emcc_args=args)
70577057

70587058
@also_with_wasm_bigint

0 commit comments

Comments
 (0)