mirror of
https://github.com/ziglang/zig.git
synced 2025-12-24 07:03:11 +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;
|
const expectError = std.testing.expectError;
|
||||||
|
|
||||||
test "trailers" {
|
test "trailers" {
|
||||||
|
if (builtin.cpu.arch == .arm) {
|
||||||
|
// https://github.com/ziglang/zig/issues/25762
|
||||||
|
return error.SkipZigTest;
|
||||||
|
}
|
||||||
|
|
||||||
const io = std.testing.io;
|
const io = std.testing.io;
|
||||||
const test_server = try createTestServer(io, struct {
|
const test_server = try createTestServer(io, struct {
|
||||||
fn run(test_server: *TestServer) anyerror!void {
|
fn run(test_server: *TestServer) anyerror!void {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user