test: clarify that self_exe_symlink fails on NetBSD due to bad F_GETPATH

closes https://codeberg.org/ziglang/zig/issues/30841
This commit is contained in:
Alex Rønne Petersen
2026-01-19 18:49:32 +01:00
parent 9f33c339c7
commit eb3f16db5e
+2 -2
View File
@@ -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",