| author | |
| committer | |
| log | 16185f66f1e500d61d43550e7c847a36ad1032df |
| tree | 4404d1eb8552323641ec079f5e8e1a3cc16fd39a |
| parent | 0205ce4736467a55129bdaecc0fd4296dfc3b7ea |
tracked by https://github.com/ziglang/zig/issues/257621 files changed, 5 insertions(+), 0 deletions(-)
lib/std/http/test.zig+5| ... | ... | @@ -12,6 +12,11 @@ const expectEqualStrings = std.testing.expectEqualStrings; |
| 12 | 12 | const expectError = std.testing.expectError; |
| 13 | 13 | |
| 14 | 14 | test "trailers" { |
| 15 | if (builtin.cpu.arch == .arm) { | |
| 16 | // https://github.com/ziglang/zig/issues/25762 | |
| 17 | return error.SkipZigTest; | |
| 18 | } | |
| 19 | ||
| 15 | 20 | const io = std.testing.io; |
| 16 | 21 | const test_server = try createTestServer(io, struct { |
| 17 | 22 | fn run(test_server: *TestServer) anyerror!void { |