diff --git a/test/standalone/self_exe_symlink/build.zig b/test/standalone/self_exe_symlink/build.zig index 1a0c8f0542..9e031dcdaa 100644 --- a/test/standalone/self_exe_symlink/build.zig +++ b/test/standalone/self_exe_symlink/build.zig @@ -9,8 +9,8 @@ pub fn build(b: *std.Build) void { const optimize: std.builtin.OptimizeMode = .Debug; const target = b.graph.host; - if (target.result.os.tag == .netbsd) return; // https://codeberg.org/ziglang/zig/issues/30841 - if (target.result.os.tag == .openbsd) return; // realpath not supported + if (target.result.os.tag == .netbsd) return; // F_GETPATH not reliable + if (target.result.os.tag == .openbsd) return; // F_GETPATH not supported const main = b.addExecutable(.{ .name = "main",