Skip to content
Open
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 @@ -710,6 +710,7 @@ jobs:
core2g.test_externref
corez.test_dylink_iostream
core2ss.test_pthread_dylink
core2ss.test_pthread_dylink_tls
core2ss.test_pthread_thread_local_storage
core2ss.test_wasm_worker_futex_wait
core2s.test_dylink_syslibs_missing_assertions
Expand Down
3 changes: 0 additions & 3 deletions test/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9364,9 +9364,6 @@ def test_pthread_dlsym(self):
@needs_dylink
@requires_pthreads
def test_pthread_dylink_tls(self):
if self.get_setting('STACK_OVERFLOW_CHECK') == 2:
self.skipTest('https://github.com/emscripten-core/emscripten/issues/24964: fails with stack overflow (Attempt to set SP to 0x000114d0, with stack limits [0x00000000 - 0x00000000])')

self.cflags += ['-Wno-experimental', '-pthread']
main = test_file('core/pthread/test_pthread_dylink_tls.c')
self.dylink_testf(main, main_cflags=['-sPTHREAD_POOL_SIZE=1'])
Expand Down
Loading