Skip to content

Commit c0ae905

Browse files
authored
Skip wasm worker tests in sanitizer configurations. NFC (emscripten-core#24218)
This configuration was recently marked as unsupported (emscripten-core#24171)
1 parent 82a430f commit c0ae905

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test_core.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ def test_longjmp_standalone(self):
886886
def test_longjmp(self):
887887
self.do_core_test('test_longjmp.c')
888888

889-
@no_asan('ASan does not support WASM_WORKERS')
889+
@no_sanitize('sanitizers do not support WASM_WORKERS')
890890
def test_longjmp_wasm_workers(self):
891891
self.do_core_test('test_longjmp.c', emcc_args=['-sWASM_WORKERS'])
892892

@@ -7588,7 +7588,7 @@ def test_embind_no_rtti_followed_by_rtti(self):
75887588
self.emcc_args += ['-lembind', '-fno-rtti', '-frtti']
75897589
self.do_run(src, '418\ndotest returned: 42\n')
75907590

7591-
@no_asan('ASan does not support WASM_WORKERS')
7591+
@no_sanitize('sanitizers do not support WASM_WORKERS')
75927592
def test_embind_wasm_workers(self):
75937593
self.do_run_in_out_file_test('embind/test_embind_wasm_workers.cpp', emcc_args=['-lembind', '-sWASM_WORKERS'])
75947594

@@ -9571,7 +9571,7 @@ def test_emscripten_async_load_script(self):
95719571
self.do_runf('test_emscripten_async_load_script.c', emcc_args=['-sFORCE_FILESYSTEM'])
95729572

95739573
@node_pthreads
9574-
@no_asan('ASan does not support WASM_WORKERS')
9574+
@no_sanitize('sanitizers do not support WASM_WORKERS')
95759575
@also_with_minimal_runtime
95769576
@also_with_modularize
95779577
def test_wasm_worker_hello(self):
@@ -9581,12 +9581,12 @@ def test_wasm_worker_hello(self):
95819581
self.do_run_in_out_file_test('wasm_worker/hello_wasm_worker.c', emcc_args=['-sWASM_WORKERS'])
95829582

95839583
@node_pthreads
9584-
@no_asan('ASan does not support WASM_WORKERS')
9584+
@no_sanitize('sanitizers do not support WASM_WORKERS')
95859585
def test_wasm_worker_malloc(self):
95869586
self.do_run_in_out_file_test('wasm_worker/malloc_wasm_worker.c', emcc_args=['-sWASM_WORKERS'])
95879587

95889588
@node_pthreads
9589-
@no_asan('ASan does not support WASM_WORKERS')
9589+
@no_sanitize('sanitizers do not support WASM_WORKERS')
95909590
def test_wasm_worker_wait_async(self):
95919591
self.do_runf('atomic/test_wait_async.c', emcc_args=['-sWASM_WORKERS'])
95929592

0 commit comments

Comments
 (0)