Skip to content

Commit a0a3e20

Browse files
authored
Disable test_wasm_global in certain configurations. NFC (#25557)
Fixes: #25550
1 parent 9232379 commit a0a3e20

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_core.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9682,7 +9682,10 @@ def test_externref_emjs(self, dynlink):
96829682
'dylink': [True],
96839683
})
96849684
@no_esm_integration('https://github.com/emscripten-core/emscripten/issues/25543')
9685+
@no_omit_asm_module_exports('https://github.com/emscripten-core/emscripten/issues/25556')
96859686
def test_wasm_global(self, dynlink):
9687+
if '-flto' in self.cflags or '-flto=thin' in self.cflags:
9688+
self.skipTest('https://github.com/emscripten-core/emscripten/issues/25555')
96869689
if dynlink:
96879690
self.check_dylink()
96889691
self.set_setting('MAIN_MODULE', 2)

0 commit comments

Comments
 (0)