commit 9c509f1526b4560b4e97367a18755a9d1ae6fcf7 (tree)
parent aaac8eae683172546ce9e018d8c419f62793f8d4
Author: Ryan Liptak <squeek502@hotmail.com>
Date: Tue, 12 Apr 2022 17:13:59 -0700
Enable passing 'Dir.rename directories' fs test on Windows
Looks like d3f87f8ac01039722197a13a12342fc747a90567 fixed the standard cases of dir renaming, but the edge cases (renaming onto an existing empty/non-empty directory) are still behaving differently than on non-Windows.
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig
@@ -434,9 +434,6 @@ test "Dir.rename files" {
}
test "Dir.rename directories" {
- // TODO: Fix on Windows, see https://github.com/ziglang/zig/issues/6364
- if (builtin.os.tag == .windows) return error.SkipZigTest;
-
var tmp_dir = tmpDir(.{});
defer tmp_dir.cleanup();