Commit 9d6cc75ce3

Andrew Kelley <andrew@ziglang.org>
2020-03-03 15:49:46
disable sendfile test on mips
1 parent a66c727
Changed files (1)
lib
std
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 {};