disable sendfile test on mips

master
Andrew Kelley 2020-03-03 09:49:46 -05:00
parent a66c72749a
commit 9d6cc75ce3
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9
1 changed files with 4 additions and 0 deletions

View File

@ -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 {};