aboutsummaryrefslogtreecommitdiff
path: root/tests/core
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-16 12:59:24 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-16 12:59:24 +0200
commit1bd48df41febbcf0f903fdfc697f59527b03bbe9 (patch)
tree3863b48e60f68d842a14069b0f911c312451edf2 /tests/core
parentd79d5237ad25612d0f7f5ac276bff85b141407a7 (diff)
Disable test_try_select_raw_happy
Diffstat (limited to 'tests/core')
-rw-r--r--tests/core/sync/chan/test_core_sync_chan.odin3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/core/sync/chan/test_core_sync_chan.odin b/tests/core/sync/chan/test_core_sync_chan.odin
index e8bb553b1..a87452eb0 100644
--- a/tests/core/sync/chan/test_core_sync_chan.odin
+++ b/tests/core/sync/chan/test_core_sync_chan.odin
@@ -275,6 +275,8 @@ test_accept_message_from_closed_buffered_chan :: proc(t: ^testing.T) {
// Ensures that if any input channel is eligible to receive or send, the try_select_raw
// operation will process it.
+// NOTE(Jeroen): This test regularly times out and fails, especially on RISCV. Commented out until fixed.
+/*
@test
test_try_select_raw_happy :: proc(t: ^testing.T) {
testing.set_fail_timeout(t, FAIL_TIME)
@@ -343,6 +345,7 @@ test_try_select_raw_happy :: proc(t: ^testing.T) {
testing.expect_value(t, did_receive_count, 1)
testing.expect_value(t, did_send_count, 1)
}
+*/
// Ensures that if no input channels are eligible to receive or send, the
// try_select_raw operation does not block.