| ... | ... | @@ -317,14 +317,14 @@ test "openDirAbsolute" { |
| 317 | 317 | } |
| 318 | 318 | } |
| 319 | 319 | |
| 320 | | test "openDir cwd parent .." { |
| 320 | test "openDir cwd parent '..'" { |
| 321 | 321 | if (builtin.os.tag == .wasi) return error.SkipZigTest; |
| 322 | 322 | |
| 323 | 323 | var dir = try fs.cwd().openDir("..", .{}); |
| 324 | 324 | defer dir.close(); |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | | test "openDir non-cwd parent .." { |
| 327 | test "openDir non-cwd parent '..'" { |
| 328 | 328 | switch (builtin.os.tag) { |
| 329 | 329 | .wasi, .netbsd, .openbsd => return error.SkipZigTest, |
| 330 | 330 | else => {}, |
| ... | ... | @@ -1674,7 +1674,7 @@ test "walker without fully iterating" { |
| 1674 | 1674 | try testing.expectEqual(@as(usize, 1), num_walked); |
| 1675 | 1675 | } |
| 1676 | 1676 | |
| 1677 | | test ". and .. in fs.Dir functions" { |
| 1677 | test "'.' and '..' in fs.Dir functions" { |
| 1678 | 1678 | if (builtin.os.tag == .wasi and builtin.link_libc) return error.SkipZigTest; |
| 1679 | 1679 | |
| 1680 | 1680 | if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { |
| ... | ... | @@ -1714,7 +1714,7 @@ test ". and .. in fs.Dir functions" { |
| 1714 | 1714 | }.impl); |
| 1715 | 1715 | } |
| 1716 | 1716 | |
| 1717 | | test ". and .. in absolute functions" { |
| 1717 | test "'.' and '..' in absolute functions" { |
| 1718 | 1718 | if (builtin.os.tag == .wasi) return error.SkipZigTest; |
| 1719 | 1719 | |
| 1720 | 1720 | var tmp = tmpDir(.{}); |