Skip to content

Commit 9642ea3

Browse files
authored
Skip dynamic linking tests in GLOBAL_BASE overridden browser test modes. (#25267)
These tests cannot be run e.g. in `browser64_2gb` modes.
1 parent 0743e64 commit 9642ea3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test_browser.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2285,6 +2285,8 @@ def test_openal_buffers(self):
22852285
self.btest_exit('openal/test_openal_buffers.c', cflags=['--preload-file', test_file('sounds/the_entertainer.wav') + '@/'])
22862286

22872287
def test_runtimelink(self):
2288+
if self.get_setting('GLOBAL_BASE'):
2289+
self.skipTest('GLOBAL_BASE is not compatible with SIDE_MODULE')
22882290
create_file('header.h', r'''
22892291
struct point {
22902292
int x, y;
@@ -3537,6 +3539,8 @@ def test_dlopen_blocking(self):
35373539
'inworker': ([1],),
35383540
})
35393541
def test_dylink_dso_needed(self, inworker):
3542+
if self.get_setting('GLOBAL_BASE'):
3543+
self.skipTest('GLOBAL_BASE is not compatible with SIDE_MODULE')
35403544
self.cflags += ['-O2']
35413545

35423546
def do_run(src, expected_output, cflags):

0 commit comments

Comments
 (0)