Skip to content

Commit 9aece71

Browse files
authored
Skip @also_with_modularize runs in strict_js suite (fixes e.g. strict_js.test_pthread_proxying_modularize) (#24990)
1 parent 58c7237 commit 9aece71

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,8 +683,10 @@ def also_with_modularize(f):
683683
@wraps(f)
684684
def metafunc(self, modularize, *args, **kwargs):
685685
if modularize:
686+
if self.get_setting('STRICT_JS'):
687+
self.skipTest('MODULARIZE is not compatible with STRICT_JS')
686688
if self.get_setting('WASM_ESM_INTEGRATION'):
687-
self.skipTest('also_with_modularize is not compatible with WASM_ESM_INTEGRATION')
689+
self.skipTest('MODULARIZE is not compatible with WASM_ESM_INTEGRATION')
688690
self.cflags += ['--extern-post-js', test_file('modularize_post_js.js'), '-sMODULARIZE']
689691
f(self, *args, **kwargs)
690692

0 commit comments

Comments
 (0)