zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 9db475de70fb7a91fefbf32a6da170f93cc17dbc (tree)
parent 1bef876636ab96449703ad2e8f9f22918546e99c
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Wed,  7 Jan 2026 05:04:11 +0100

std.fs.test: skip executablePath and openExecutable on OpenBSD

processExecutablePath() is unsupported.

Diffstat:
Mlib/std/fs/test.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig @@ -1131,6 +1131,7 @@ test "renameAbsolute" { test "openExecutable" { if (native_os == .wasi) return error.SkipZigTest; + if (native_os == .openbsd) return error.SkipZigTest; const io = testing.io; @@ -1140,6 +1141,7 @@ test "openExecutable" { test "executablePath" { if (native_os == .wasi) return error.SkipZigTest; + if (native_os == .openbsd) return error.SkipZigTest; const io = testing.io; var buf: [Dir.max_path_bytes]u8 = undefined;