| ... | @@ -102,7 +102,10 @@ test "openDir cwd parent .." { | ... | @@ -102,7 +102,10 @@ test "openDir cwd parent .." { |
| 102 | } | 102 | } |
| 103 | | 103 | |
| 104 | test "openDir non-cwd parent .." { | 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 | var tmp = tmpDir(.{}); | 110 | var tmp = tmpDir(.{}); |
| 108 | defer tmp.cleanup(); | 111 | defer tmp.cleanup(); |