freebsd: disable failing test

See #8538
This commit is contained in:
Andrew Kelley 2021-04-15 00:59:40 -07:00
parent 996193c228
commit 04b8354702

View File

@ -261,6 +261,10 @@ test "linkat with different directories" {
test "fstatat" {
// enable when `fstat` and `fstatat` are implemented on Windows
if (builtin.os.tag == .windows) return error.SkipZigTest;
if (builtin.os.tag == .freebsd and builtin.mode == .ReleaseFast) {
// https://github.com/ziglang/zig/issues/8538
return error.SkipZigTest;
}
var tmp = tmpDir(.{});
defer tmp.cleanup();