| author | |
| committer | |
| log | 3eedaab731d9a31ed1039dddc9eb52d8d7002c55 |
| tree | d908aa1eec3f41ebbe62aeeb56fa7c61e55a93e8 |
| parent | e1216686f3b481eda5e0e6dd025711e0f1f1f2d0 |
| signature |
1 files changed, 4 insertions(+), 1 deletions(-)
lib/std/fs/test.zig+4-1| ... | ... | @@ -102,7 +102,10 @@ test "openDir cwd parent .." { |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | test "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 | } | |
| 106 | 109 | |
| 107 | 110 | var tmp = tmpDir(.{}); |
| 108 | 111 | defer tmp.cleanup(); |