mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
std.fs.test: skip executablePath and openExecutable on OpenBSD
processExecutablePath() is unsupported.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user