Skip to content

Commit 9f9d615

Browse files
authored
Skip wasm EH rethrow tests under lsan. NFC (#21125)
See #21124
1 parent 0df6362 commit 9f9d615

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test_core.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,6 +1368,8 @@ def test_exceptions_refcount(self):
13681368

13691369
@with_both_eh_sjlj
13701370
def test_exceptions_primary(self):
1371+
if '-fsanitize=leak' in self.emcc_args and '-fwasm-exceptions' in self.emcc_args:
1372+
self.skipTest('https://github.com/emscripten-core/emscripten/issues/21124')
13711373
self.do_core_test('test_exceptions_primary.cpp')
13721374

13731375
@with_both_eh_sjlj
@@ -1384,6 +1386,8 @@ def test_exceptions_multiple_inherit(self):
13841386

13851387
@with_both_eh_sjlj
13861388
def test_exceptions_multiple_inherit_rethrow(self):
1389+
if '-fsanitize=leak' in self.emcc_args and '-fwasm-exceptions' in self.emcc_args:
1390+
self.skipTest('https://github.com/emscripten-core/emscripten/issues/21124')
13871391
self.do_core_test('test_exceptions_multiple_inherit_rethrow.cpp')
13881392

13891393
@with_both_eh_sjlj

0 commit comments

Comments
 (0)