Commit 143ea88017

Jacob Young <jacobly0@users.noreply.github.com>
2025-11-01 16:08:46
Revert "std.http: disable failing test on 32-bit arm"
This reverts commit 16185f66f1e500d61d43550e7c847a36ad1032df. Which was fixed by d000574380baba7b63fdcde713b51f8318509474. Closes #25762
1 parent 5db9eaa
Changed files (1)
lib
std
lib/std/http/test.zig
@@ -12,11 +12,6 @@ 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 {