authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2023-08-15 17:20:05-04:00
committergravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2023-08-15 17:29:35-04:00
log3eedaab731d9a31ed1039dddc9eb52d8d7002c55
treed908aa1eec3f41ebbe62aeeb56fa7c61e55a93e8
parente1216686f3b481eda5e0e6dd025711e0f1f1f2d0
signaturelock-open Commit is signed but in an unrecognized format.

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


1 files changed, 4 insertions(+), 1 deletions(-)

lib/std/fs/test.zig+4-1
...@@ -102,7 +102,10 @@ test "openDir cwd parent .." {...@@ -102,7 +102,10 @@ test "openDir cwd parent .." {
102}102}
103103
104test "openDir non-cwd parent .." {104test "openDir non-cwd parent .." {
105 if (builtin.os.tag == .wasi) return error.SkipZigTest;105 switch (builtin.os.tag) {
106 .wasi, .netbsd, .openbsd => return error.SkipZigTest,
107 else => {},
108 }
106109
107 var tmp = tmpDir(.{});110 var tmp = tmpDir(.{});
108 defer tmp.cleanup();111 defer tmp.cleanup();