authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-07-10 01:20:44+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-07-10 01:21:50+02:00
logef3040786e502ea82e87ffefb9570b4e88dff79b
treecc58b64697c27206f60a6ac7472eeb781863dc52
parent6b30ad33422c28e6426d1994300048e6909d9b3f
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.Io: disable `Group.cancel` on sparc64-linux

https://codeberg.org/ziglang/zig/issues/35347#issuecomment-18908861

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

lib/std/Io/test.zig+2
......@@ -232,6 +232,8 @@ fn count(a: usize, b: usize, result: *usize) void {
232232}
233233
234234test "Group.cancel" {
235 if (builtin.cpu.arch.isSPARC() and builtin.os.tag == .linux) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35347
236
235237 const global = struct {
236238 fn sleep(io: Io, result: *usize) Io.Cancelable!void {
237239 defer result.* = 1;