Commit 16185f66f1

Andrew Kelley <andrew@ziglang.org>
2025-10-29 21:50:04
std.http: disable failing test on 32-bit arm
tracked by https://github.com/ziglang/zig/issues/25762
1 parent 0205ce4
Changed files (1)
lib
std
lib/std/http/test.zig
@@ -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 {