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

tracked by https://github.com/ziglang/zig/issues/25762
This commit is contained in:
Andrew Kelley 2025-10-29 13:50:04 -07:00
parent 0205ce4736
commit 16185f66f1

View File

@ -12,6 +12,11 @@ const expectEqualStrings = std.testing.expectEqualStrings;
const expectError = std.testing.expectError;
test "trailers" {
if (builtin.cpu.arch == .arm) {
// https://github.com/ziglang/zig/issues/25762
return error.SkipZigTest;
}
const io = std.testing.io;
const test_server = try createTestServer(io, struct {
fn run(test_server: *TestServer) anyerror!void {