Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,7 @@ jobs:
test_targets: "
browser.test_gl_stride
browser.test_memory_growth_during_startup
browser.test_pthread_memgrowth_stale_views
browser.test_pthread_large_pthread_allocation
browser.test_pthread_sbrk*
browser.test_pthread_asan*
Expand Down
4 changes: 2 additions & 2 deletions test/test_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -5691,10 +5691,10 @@ def test_binary_encode(self, extra):
def test_shell_minimal(self, args):
self.btest_exit('browser_test_hello_world.c', cflags=['--shell-file', path_from_root('html/shell_minimal.html')] + args)

@no_chrome('https://github.com/emscripten-core/emscripten/issues/27084')
@no_highmem('uses INITIAL_MEMORY')
def test_pthread_memgrowth_stale_views(self):
self.btest_exit('test_pthread_memgrowth_stale_views.c',
cflags=['-pthread', '-sALLOW_MEMORY_GROWTH', '-Wno-pthreads-mem-growth'])
cflags=['-pthread', '-sINITIAL_MEMORY=10mb', '-sALLOW_MEMORY_GROWTH', '-Wno-pthreads-mem-growth'])


class browser64(browser):
Expand Down
Loading