Skip to content
Merged
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
5 changes: 5 additions & 0 deletions test/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9636,22 +9636,27 @@ def test_syscall_intercept(self):
self.do_core_test('test_syscall_intercept.c')

@requires_pthreads
@no_wasmfs('https://github.com/emscripten-core/emscripten/issues/26736')
def test_select_blocking(self):
self.do_runf('core/test_select_blocking.c', cflags=['-pthread', '-sPROXY_TO_PTHREAD=1', '-sEXIT_RUNTIME=1'])

@requires_pthreads
@no_wasmfs('https://github.com/emscripten-core/emscripten/issues/26736')
def test_pselect_blocking(self):
self.do_runf('core/test_pselect_blocking.c', cflags=['-pthread', '-sPROXY_TO_PTHREAD=1', '-sEXIT_RUNTIME=1'])

@requires_pthreads
@no_wasmfs('https://github.com/emscripten-core/emscripten/issues/26736')
def test_poll_blocking(self):
self.do_runf('core/test_poll_blocking.c', cflags=['-pthread', '-sPROXY_TO_PTHREAD=1', '-sEXIT_RUNTIME=1'])

@requires_pthreads
@no_wasmfs('https://github.com/emscripten-core/emscripten/issues/26736')
def test_ppoll_blocking(self):
self.do_runf('core/test_ppoll_blocking.c', cflags=['-pthread', '-sPROXY_TO_PTHREAD=1', '-sEXIT_RUNTIME=1'])

@with_asyncify_and_jspi
@no_wasmfs('https://github.com/emscripten-core/emscripten/issues/26736')
def test_poll_blocking_asyncify(self):
if self.get_setting('JSPI') and engine_is_v8(self.get_current_js_engine()):
self.skipTest('test requires setTimeout which is not supported under v8')
Expand Down
Loading