From 44b2f201f5d08102a12ea2147446611bc5f818a7 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Wed, 12 Aug 2026 14:09:07 +0200 Subject: [PATCH] Remove log --- tests/core/sync/test_core_sync.odin | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tests/core/sync/test_core_sync.odin b/tests/core/sync/test_core_sync.odin index 1cc52ca3e..28c144935 100644 --- a/tests/core/sync/test_core_sync.odin +++ b/tests/core/sync/test_core_sync.odin @@ -8,7 +8,6 @@ package test_core_sync import "base:intrinsics" -// import "core:log" import "core:sync" import "core:testing" import "core:thread" @@ -538,11 +537,9 @@ test_ticket_mutex :: proc(t: ^testing.T) { @test test_benaphore :: proc(t: ^testing.T) { - // NOTE(Jeroen): Regularly times out on the simulated RISC-V CI runners, - // so we're skipping the test there. - when ODIN_ARCH == .riscv64 { - log.infof("Skipped on riscv64") + // NOTE(Jeroen): Regularly times out on the simulated RISC-V CI runners, + // so we're skipping the test there. return }