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" {...@@ -149,8 +149,6 @@ test "async with array return type" {
149}149}
150150
151test "cancel blocked read from pipe" {151test "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
154 const global = struct {152 const global = struct {
155 fn readFromPipe(io: Io, pipe: Io.File) !void {153 fn readFromPipe(io: Io, pipe: Io.File) !void {
156 var buf: [1]u8 = undefined;154 var buf: [1]u8 = undefined;
lib/std/Io/net/test.zig-2
...@@ -356,8 +356,6 @@ test "decompress compressed DNS name" {...@@ -356,8 +356,6 @@ test "decompress compressed DNS name" {
356}356}
357357
358test "cancel accept" {358test "cancel accept" {
359 if (builtin.cpu.arch.isSPARC() and builtin.os.tag == .linux) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35347
360
361 const io = testing.io;359 const io = testing.io;
362 const localhost: net.IpAddress = .{ .ip4 = .loopback(0) };360 const localhost: net.IpAddress = .{ .ip4 = .loopback(0) };
363361
lib/std/Io/test.zig-2
...@@ -326,8 +326,6 @@ test "Group materializes error.Cancel" {...@@ -326,8 +326,6 @@ test "Group materializes error.Cancel" {
326}326}
327327
328test "Group task receives cancelation unknowingly" {328test "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
331 const S = struct {329 const S = struct {
332 io: Io,330 io: Io,
333 err: ?Io.Cancelable!void,331 err: ?Io.Cancelable!void,