authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-10-29 13:50:04-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-10-29 13:50:04-07:00
log16185f66f1e500d61d43550e7c847a36ad1032df
tree4404d1eb8552323641ec079f5e8e1a3cc16fd39a
parent0205ce4736467a55129bdaecc0fd4296dfc3b7ea

std.http: disable failing test on 32-bit arm

tracked by https://github.com/ziglang/zig/issues/25762

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

lib/std/http/test.zig+5
...@@ -12,6 +12,11 @@ const expectEqualStrings = std.testing.expectEqualStrings;...@@ -12,6 +12,11 @@ const expectEqualStrings = std.testing.expectEqualStrings;
12const expectError = std.testing.expectError;12const expectError = std.testing.expectError;
1313
14test "trailers" {14test "trailers" {
15 if (builtin.cpu.arch == .arm) {
16 // https://github.com/ziglang/zig/issues/25762
17 return error.SkipZigTest;
18 }
19
15 const io = std.testing.io;20 const io = std.testing.io;
16 const test_server = try createTestServer(io, struct {21 const test_server = try createTestServer(io, struct {
17 fn run(test_server: *TestServer) anyerror!void {22 fn run(test_server: *TestServer) anyerror!void {