mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
std.http: disable failing test on 32-bit arm
tracked by https://github.com/ziglang/zig/issues/25762
This commit is contained in:
parent
0205ce4736
commit
16185f66f1
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user