@@ -6954,7 +6954,7 @@ def test_autodebug_wasm(self):
6954
6954
### Integration tests
6955
6955
6956
6956
@crossplatform
6957
- @no_modularize_instance ('ccall is not compatible with WASM_ESM_INTEGRATION ' )
6957
+ @no_modularize_instance ('ccall is not compatible with MODULARIZE=instance ' )
6958
6958
def test_ccall (self ):
6959
6959
self .emcc_args .append ('-Wno-return-stack-address' )
6960
6960
self .set_setting ('EXPORTED_RUNTIME_METHODS' , ['ccall' , 'cwrap' , 'STACK_SIZE' ])
@@ -6999,7 +6999,7 @@ def test_ccall(self):
6999
6999
if self .maybe_closure ():
7000
7000
self .do_core_test ('test_ccall.cpp' )
7001
7001
7002
- @no_modularize_instance ('ccall is not compatible with WASM_ESM_INTEGRATION ' )
7002
+ @no_modularize_instance ('ccall is not compatible with MODULARIZE=instance ' )
7003
7003
def test_ccall_cwrap_fast_path (self ):
7004
7004
self .emcc_args .append ('-Wno-return-stack-address' )
7005
7005
self .set_setting ('EXPORTED_RUNTIME_METHODS' , ['ccall' , 'cwrap' ])
@@ -8132,7 +8132,7 @@ def test_async_loop(self):
8132
8132
def test_async_hello_v8 (self ):
8133
8133
self .test_async_hello ()
8134
8134
8135
- @no_modularize_instance ('ccall is not compatible with WASM_ESM_INTEGRATION ' )
8135
+ @no_modularize_instance ('ccall is not compatible with MODULARIZE=instance ' )
8136
8136
def test_async_ccall_bad (self ):
8137
8137
# check bad ccall use
8138
8138
# needs to flush stdio streams
@@ -8164,7 +8164,7 @@ def test_async_ccall_bad(self):
8164
8164
self .do_runf ('main.c' , 'The call to main is running asynchronously.' )
8165
8165
8166
8166
@with_asyncify_and_jspi
8167
- @no_modularize_instance ('ccall is not compatible with WASM_ESM_INTEGRATION ' )
8167
+ @no_modularize_instance ('ccall is not compatible with MODULARIZE=instance ' )
8168
8168
def test_async_ccall_good (self ):
8169
8169
# check reasonable ccall use
8170
8170
self .set_setting ('ASYNCIFY' )
@@ -8193,7 +8193,7 @@ def test_async_ccall_good(self):
8193
8193
'exit_runtime' : (True ,),
8194
8194
})
8195
8195
@with_asyncify_and_jspi
8196
- @no_modularize_instance ('ccall is not compatible with WASM_ESM_INTEGRATION ' )
8196
+ @no_modularize_instance ('ccall is not compatible with MODULARIZE=instance ' )
8197
8197
def test_async_ccall_promise (self , exit_runtime ):
8198
8198
if self .get_setting ('ASYNCIFY' ) == 2 :
8199
8199
self .set_setting ('JSPI_EXPORTS' , ['stringf' , 'floatf' ])
@@ -9544,7 +9544,7 @@ def test_emscripten_stack(self):
9544
9544
self .do_core_test ('test_stack_get_free.c' )
9545
9545
9546
9546
# Tests settings.ABORT_ON_WASM_EXCEPTIONS
9547
- @no_modularize_instance ('ABORT_ON_WASM_EXCEPTIONS ' )
9547
+ @no_modularize_instance ('ccall is not compatible with MODULARIZE=instance ' )
9548
9548
def test_abort_on_exceptions (self ):
9549
9549
self .set_setting ('ABORT_ON_WASM_EXCEPTIONS' )
9550
9550
self .set_setting ('ALLOW_TABLE_GROWTH' )
@@ -9553,7 +9553,7 @@ def test_abort_on_exceptions(self):
9553
9553
self .emcc_args += ['-lembind' , '--post-js' , test_file ('core/test_abort_on_exceptions_post.js' )]
9554
9554
self .do_core_test ('test_abort_on_exceptions.cpp' , interleaved_output = False )
9555
9555
9556
- @no_modularize_instance ('ABORT_ON_WASM_EXCEPTIONS' )
9556
+ @no_esm_integration ('ABORT_ON_WASM_EXCEPTIONS is not compatible with WASM_ESM_INTEGRATION ' )
9557
9557
def test_abort_on_exceptions_main (self ):
9558
9558
# The unhandled exception wrappers should not kick in for exceptions thrown during main
9559
9559
self .set_setting ('ABORT_ON_WASM_EXCEPTIONS' )
@@ -9567,7 +9567,7 @@ def test_abort_on_exceptions_main(self):
9567
9567
9568
9568
@node_pthreads
9569
9569
@flaky ('https://github.com/emscripten-core/emscripten/issues/20067' )
9570
- @no_modularize_instance ('ABORT_ON_WASM_EXCEPTIONS' )
9570
+ @no_esm_integration ('ABORT_ON_WASM_EXCEPTIONS is not compatible with WASM_ESM_INTEGRATION ' )
9571
9571
def test_abort_on_exceptions_pthreads (self ):
9572
9572
self .set_setting ('ABORT_ON_WASM_EXCEPTIONS' )
9573
9573
self .set_setting ('PROXY_TO_PTHREAD' )
0 commit comments