authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-08-01 14:33:08+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-08-01 15:20:10+02:00
logc089dd22a97c55f36bcdcf962d646bd67cc33fb0
tree65c23190923d0e113fef7db2a1b156f3799e3ba1
parenteda296c24a80f15b4f28b985fa7ff782bb6b731e
signature Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

Revert "std: disable some failing cancelation tests on sparc64-linux"

This reverts commit 3b330f1d7c36416924f8986a6c541331130297d4.

3 files changed, 0 insertions(+), 6 deletions(-)

lib/std/Io/Threaded/test.zig-2
......@@ -149,8 +149,6 @@ test "async with array return type" {
149149}
150150
151151test "cancel blocked read from pipe" {
152 if (builtin.cpu.arch.isSPARC() and builtin.os.tag == .linux) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35347
153
154152 const global = struct {
155153 fn readFromPipe(io: Io, pipe: Io.File) !void {
156154 var buf: [1]u8 = undefined;
lib/std/Io/net/test.zig-2
......@@ -356,8 +356,6 @@ test "decompress compressed DNS name" {
356356}
357357
358358test "cancel accept" {
359 if (builtin.cpu.arch.isSPARC() and builtin.os.tag == .linux) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35347
360
361359 const io = testing.io;
362360 const localhost: net.IpAddress = .{ .ip4 = .loopback(0) };
363361
lib/std/Io/test.zig-2
......@@ -326,8 +326,6 @@ test "Group materializes error.Cancel" {
326326}
327327
328328test "Group task receives cancelation unknowingly" {
329 if (builtin.cpu.arch.isSPARC() and builtin.os.tag == .linux) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35347
330
331329 const S = struct {
332330 io: Io,
333331 err: ?Io.Cancelable!void,