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
7 changes: 7 additions & 0 deletions tests/test_posixtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,16 @@ def get_pthread_tests():
'test_pthread_spin_lock_3_1': 'signals are not supported',
}

# Mark certain tests as flaky, which may sometimes fail.
# TODO invesigate these tests.
flaky = {
Comment thread
sbc100 marked this conversation as resolved.
'test_pthread_cond_signal_1_1': 'flaky: https://github.com/emscripten-core/emscripten/issues/13283',
}

# Mark certain tests as not passing
disabled = {
**unsupported,
**flaky,
'test_pthread_create_11_1': 'never returns',
'test_pthread_barrier_wait_2_1': 'never returns',
'test_pthread_cond_timedwait_2_6': 'never returns',
Expand Down