| ... | @@ -34,7 +34,7 @@ test "content length reader state update" { | ... | @@ -34,7 +34,7 @@ test "content length reader state update" { |
| 34 | } | 34 | } |
| 35 | | 35 | |
| 36 | test "trailers" { | 36 | test "trailers" { |
| 37 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 37 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 38 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 38 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 39 | | 39 | |
| 40 | const io = std.testing.io; | 40 | const io = std.testing.io; |
| ... | @@ -121,7 +121,7 @@ test "trailers" { | ... | @@ -121,7 +121,7 @@ test "trailers" { |
| 121 | } | 121 | } |
| 122 | | 122 | |
| 123 | test "HTTP server handles a chunked transfer coding request" { | 123 | test "HTTP server handles a chunked transfer coding request" { |
| 124 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 124 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 125 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 125 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 126 | | 126 | |
| 127 | const io = std.testing.io; | 127 | const io = std.testing.io; |
| ... | @@ -190,7 +190,7 @@ test "HTTP server handles a chunked transfer coding request" { | ... | @@ -190,7 +190,7 @@ test "HTTP server handles a chunked transfer coding request" { |
| 190 | } | 190 | } |
| 191 | | 191 | |
| 192 | test "echo content server" { | 192 | test "echo content server" { |
| 193 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 193 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 194 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 194 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 195 | | 195 | |
| 196 | const io = std.testing.io; | 196 | const io = std.testing.io; |
| ... | @@ -281,7 +281,7 @@ test "echo content server" { | ... | @@ -281,7 +281,7 @@ test "echo content server" { |
| 281 | } | 281 | } |
| 282 | | 282 | |
| 283 | test "Server.Request.respondStreaming non-chunked, unknown content-length" { | 283 | test "Server.Request.respondStreaming non-chunked, unknown content-length" { |
| 284 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 284 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 285 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 285 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 286 | | 286 | |
| 287 | const io = std.testing.io; | 287 | const io = std.testing.io; |
| ... | @@ -360,7 +360,7 @@ test "Server.Request.respondStreaming non-chunked, unknown content-length" { | ... | @@ -360,7 +360,7 @@ test "Server.Request.respondStreaming non-chunked, unknown content-length" { |
| 360 | } | 360 | } |
| 361 | | 361 | |
| 362 | test "receiving arbitrary http headers from the client" { | 362 | test "receiving arbitrary http headers from the client" { |
| 363 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 363 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 364 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 364 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 365 | | 365 | |
| 366 | const io = std.testing.io; | 366 | const io = std.testing.io; |
| ... | @@ -426,7 +426,7 @@ test "receiving arbitrary http headers from the client" { | ... | @@ -426,7 +426,7 @@ test "receiving arbitrary http headers from the client" { |
| 426 | } | 426 | } |
| 427 | | 427 | |
| 428 | test "general client/server API coverage" { | 428 | test "general client/server API coverage" { |
| 429 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 429 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 430 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 430 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 431 | | 431 | |
| 432 | const io = std.testing.io; | 432 | const io = std.testing.io; |
| ... | @@ -922,7 +922,7 @@ test "general client/server API coverage" { | ... | @@ -922,7 +922,7 @@ test "general client/server API coverage" { |
| 922 | } | 922 | } |
| 923 | | 923 | |
| 924 | test "Server streams both reading and writing" { | 924 | test "Server streams both reading and writing" { |
| 925 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 925 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 926 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 926 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 927 | | 927 | |
| 928 | const io = std.testing.io; | 928 | const io = std.testing.io; |
| ... | @@ -1192,7 +1192,7 @@ fn createTestServer(io: Io, S: type) !*TestServer { | ... | @@ -1192,7 +1192,7 @@ fn createTestServer(io: Io, S: type) !*TestServer { |
| 1192 | } | 1192 | } |
| 1193 | | 1193 | |
| 1194 | test "redirect to different connection" { | 1194 | test "redirect to different connection" { |
| 1195 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 1195 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 1196 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 1196 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 1197 | | 1197 | |
| 1198 | const io = std.testing.io; | 1198 | const io = std.testing.io; |
| ... | @@ -1280,7 +1280,7 @@ test "redirect to different connection" { | ... | @@ -1280,7 +1280,7 @@ test "redirect to different connection" { |
| 1280 | } | 1280 | } |
| 1281 | | 1281 | |
| 1282 | test "boot failed connections from the pool" { | 1282 | test "boot failed connections from the pool" { |
| 1283 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879 | 1283 | if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/194257 |
| 1284 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 | 1284 | if (builtin.os.tag == .openbsd) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30806 |
| 1285 | | 1285 | |
| 1286 | const io = std.testing.io; | 1286 | const io = std.testing.io; |