| author | |
| committer | |
| log | 3b330f1d7c36416924f8986a6c541331130297d4 |
| tree | 53da0763944b77ce468d584b97b69878e3cf4d35 |
| parent | 3b41518c14cc2d9d9951a5ce3f44ed942502e1a9 |
| signature |
https://codeberg.org/ziglang/zig/issues/353473 files changed, 6 insertions(+), 0 deletions(-)
lib/std/Io/Threaded/test.zig+2| ... | ... | @@ -149,6 +149,8 @@ test "async with array return type" { |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | test "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 | ||
| 152 | 154 | const global = struct { |
| 153 | 155 | fn readFromPipe(io: Io, pipe: Io.File) !void { |
| 154 | 156 | var buf: [1]u8 = undefined; |
lib/std/Io/net/test.zig+2| ... | ... | @@ -350,6 +350,8 @@ test "decompress compressed DNS name" { |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | 352 | test "cancel accept" { |
| 353 | if (builtin.cpu.arch.isSPARC() and builtin.os.tag == .linux) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35347 | |
| 354 | ||
| 353 | 355 | const io = testing.io; |
| 354 | 356 | const localhost: net.IpAddress = .{ .ip4 = .loopback(0) }; |
| 355 | 357 |
lib/std/Io/test.zig+2| ... | ... | @@ -324,6 +324,8 @@ test "Group materializes error.Cancel" { |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | test "Group task receives cancelation unknowingly" { |
| 327 | if (builtin.cpu.arch.isSPARC() and builtin.os.tag == .linux) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35347 | |
| 328 | ||
| 327 | 329 | const S = struct { |
| 328 | 330 | io: Io, |
| 329 | 331 | err: ?Io.Cancelable!void, |