diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2025-06-20 22:15:21 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2025-06-20 22:15:21 +0200 |
| commit | 30e1c96269a662eb7a58206e7896df05da166a96 (patch) | |
| tree | 7e98c8c4914004865674bd27b4558e17979f1f78 /tests | |
| parent | 7f648d11d6a53b083108508e46066a7d2916b534 (diff) | |
uncomment test, see if it's fixed
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/sync/chan/test_core_sync_chan.odin | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/core/sync/chan/test_core_sync_chan.odin b/tests/core/sync/chan/test_core_sync_chan.odin index 304986ae7..fdac61550 100644 --- a/tests/core/sync/chan/test_core_sync_chan.odin +++ b/tests/core/sync/chan/test_core_sync_chan.odin @@ -445,8 +445,6 @@ 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) { sync.guard(&test_lock) @@ -516,7 +514,6 @@ 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. |