| ... | @@ -45,6 +45,10 @@ fn testThreadIdFn(thread_id: *Thread.Id) void { | ... | @@ -45,6 +45,10 @@ fn testThreadIdFn(thread_id: *Thread.Id) void { |
| 45 | } | 45 | } |
| 46 | | 46 | |
| 47 | test "sendfile" { | 47 | test "sendfile" { |
| | 48 | if (std.Target.current.cpu.arch == .mipsel) { |
| | 49 | // https://github.com/ziglang/zig/issues/4615 |
| | 50 | return error.SkipZigTest; |
| | 51 | } |
| 48 | try fs.makePath(a, "os_test_tmp"); | 52 | try fs.makePath(a, "os_test_tmp"); |
| 49 | defer fs.deleteTree("os_test_tmp") catch {}; | 53 | defer fs.deleteTree("os_test_tmp") catch {}; |
| 50 | | 54 | |