authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-03-10 09:19:28+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-03-10 09:19:54+01:00
logcfe5c88ad6081e284d0caf36cf8d7e80fe39b676
treec3b5aa3ccf6dc599452b9d5442eb4de35b5a8b23
parent5318045b88f05c8c3505287114e1caec562de763
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.Io.RwLock: disable `smoke test` on any aarch64 target

https://codeberg.org/ziglang/zig/issues/31393#issuecomment-11441755

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Io/RwLock.zig+1-1
...@@ -114,7 +114,7 @@ test "internal state" {...@@ -114,7 +114,7 @@ test "internal state" {
114}114}
115115
116test "smoke test" {116test "smoke test" {
117 if (builtin.target.cpu.arch.isAARCH64() and builtin.target.os.tag == .netbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31393117 if (builtin.target.cpu.arch.isAARCH64()) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31393
118118
119 const io = testing.io;119 const io = testing.io;
120120