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

processExecutablePath() is unsupported.
This commit is contained in:
Alex Rønne Petersen 2026-01-07 05:04:11 +01:00
parent 1bef876636
commit 9db475de70
No known key found for this signature in database

View file

@ -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;