| author | |
| committer | |
| log | 59de5d0350f76933549e5402f090785351d9498d |
| tree | cffa17e68fd4d259a5df914eac8a3d4456a370fe |
| parent | a72ad61cd4b718dd1ce2bf8ba4a3404f8304648c |
1 files changed, 7 insertions(+), 0 deletions(-)
lib/std/fs/test.zig+7| ... | ... | @@ -92,6 +92,13 @@ test "openDirAbsolute" { |
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | test "openDir cwd parent .." { | |
| 96 | if (builtin.os.tag == .wasi) return error.SkipZigTest; | |
| 97 | ||
| 98 | var cwd = try fs.cwd().openDir("..", .{}); | |
| 99 | defer cwd.close(); | |
| 100 | } | |
| 101 | ||
| 95 | 102 | test "readLinkAbsolute" { |
| 96 | 103 | if (builtin.os.tag == .wasi) return error.SkipZigTest; |
| 97 | 104 |