mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 06:04:46 +01:00
std.fs.test: skip executablePath and openExecutable on OpenBSD
processExecutablePath() is unsupported.
This commit is contained in:
parent
1bef876636
commit
9db475de70
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue