Skip to content

Commit 0cd10fd

Browse files
authored
Fix test core0g.test_asyncify_lists* and core2g.tests_asyncify_lists* (#24995)
1 parent ec2c68e commit 0cd10fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8325,7 +8325,7 @@ def test_asyncify_lists(self, args, should_pass, response=None):
83258325
if self.is_wasm():
83268326
filename = 'test_asyncify_lists.wasm'
83278327
# there should be no name section. sanitizers, however, always enable that
8328-
if not is_sanitizing(self.cflags) and '--profiling-funcs' not in self.cflags:
8328+
if not is_sanitizing(self.cflags) and '--profiling-funcs' not in self.cflags and '-g' not in self.cflags:
83298329
with webassembly.Module(filename) as m:
83308330
self.assertFalse(m.has_name_section())
83318331
# in a fully-optimized build, imports and exports are minified too and we

0 commit comments

Comments
 (0)