Commit 04b8354702

Andrew Kelley <andrew@ziglang.org>
2021-04-15 09:59:40
freebsd: disable failing test
See #8538
1 parent 996193c
Changed files (1)
lib
std
lib/std/os/test.zig
@@ -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();