mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-28 03:17:08 +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" {
|
test "openExecutable" {
|
||||||
if (native_os == .wasi) return error.SkipZigTest;
|
if (native_os == .wasi) return error.SkipZigTest;
|
||||||
|
if (native_os == .openbsd) return error.SkipZigTest;
|
||||||
|
|
||||||
const io = testing.io;
|
const io = testing.io;
|
||||||
|
|
||||||
@@ -1140,6 +1141,7 @@ test "openExecutable" {
|
|||||||
|
|
||||||
test "executablePath" {
|
test "executablePath" {
|
||||||
if (native_os == .wasi) return error.SkipZigTest;
|
if (native_os == .wasi) return error.SkipZigTest;
|
||||||
|
if (native_os == .openbsd) return error.SkipZigTest;
|
||||||
|
|
||||||
const io = testing.io;
|
const io = testing.io;
|
||||||
var buf: [Dir.max_path_bytes]u8 = undefined;
|
var buf: [Dir.max_path_bytes]u8 = undefined;
|
||||||
|
|||||||
Reference in New Issue
Block a user