From 9d6cc75ce3be9ab291614fc0d4361877e9200126 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 3 Mar 2020 09:49:46 -0500 Subject: [PATCH] disable sendfile test on mips --- lib/std/os/test.zig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/std/os/test.zig b/lib/std/os/test.zig index 717380ea3..0790f6bd0 100644 --- a/lib/std/os/test.zig +++ b/lib/std/os/test.zig @@ -45,6 +45,10 @@ fn testThreadIdFn(thread_id: *Thread.Id) void { } test "sendfile" { + if (std.Target.current.cpu.arch == .mipsel) { + // https://github.com/ziglang/zig/issues/4615 + return error.SkipZigTest; + } try fs.makePath(a, "os_test_tmp"); defer fs.deleteTree("os_test_tmp") catch {};