bsd: std.c.fs: skip test w/ getFdPath in calltree

This commit is contained in:
Michael Dusan 2023-08-15 17:20:05 -04:00
parent e1216686f3
commit 3eedaab731
No known key found for this signature in database
GPG Key ID: ED4C5BA849FA1B74

View File

@ -102,7 +102,10 @@ test "openDir cwd parent .." {
}
test "openDir non-cwd parent .." {
if (builtin.os.tag == .wasi) return error.SkipZigTest;
switch (builtin.os.tag) {
.wasi, .netbsd, .openbsd => return error.SkipZigTest,
else => {},
}
var tmp = tmpDir(.{});
defer tmp.cleanup();