authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-12-18 01:46:31+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-12-18 01:46:31+01:00
log0437decca9553e129dcc33a4b33164c9d2ce2db0
tree408f17764537aeda6b29526702646c34100c8f35
parentfc78a61c4c6dd2a8a1047b5e5b62037e82b0dca0
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.http.test: disable `redirect to different connection` on mips*-linux w/o libc

https://codeberg.org/ziglang/zig/issues/30216

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

lib/std/http/test.zig+1
...@@ -1151,6 +1151,7 @@ fn createTestServer(io: Io, S: type) !*TestServer {...@@ -1151,6 +1151,7 @@ fn createTestServer(io: Io, S: type) !*TestServer {
11511151
1152test "redirect to different connection" {1152test "redirect to different connection" {
1153 if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/1718791153 if (builtin.cpu.arch.isPowerPC64() and builtin.mode != .Debug) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/171879
1154 if (builtin.cpu.arch.isMIPS32() and !builtin.link_libc) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30216
11541155
1155 const io = std.testing.io;1156 const io = std.testing.io;
1156 const test_server_new = try createTestServer(io, struct {1157 const test_server_new = try createTestServer(io, struct {