authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-03 09:49:46-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-03 09:49:46-05:00
log9d6cc75ce3be9ab291614fc0d4361877e9200126
tree967fafec321ccb4f1d6a460cb0c67c54d2203b3a
parenta66c72749a113cc6b2423d96d1f1f7c692d48ff5
signaturelock-open Commit is signed but in an unrecognized format.

disable sendfile test on mips


1 files changed, 4 insertions(+), 0 deletions(-)

lib/std/os/test.zig+4
......@@ -45,6 +45,10 @@ fn testThreadIdFn(thread_id: *Thread.Id) void {
4545}
4646
4747test "sendfile" {
48 if (std.Target.current.cpu.arch == .mipsel) {
49 // https://github.com/ziglang/zig/issues/4615
50 return error.SkipZigTest;
51 }
4852 try fs.makePath(a, "os_test_tmp");
4953 defer fs.deleteTree("os_test_tmp") catch {};
5054