commit 3eedaab731d9a31ed1039dddc9eb52d8d7002c55 (tree) parent e1216686f3b481eda5e0e6dd025711e0f1f1f2d0 Author: Michael Dusan <michael.dusan@gmail.com> Date: Tue, 15 Aug 2023 17:20:05 -0400 bsd: std.c.fs: skip test w/ getFdPath in calltree Diffstat:
| M | lib/std/fs/test.zig | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig @@ -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();