motiejus/zig

fork of https://codeberg.org/ziglang/zig
git clone https://git.jakstys.lt/motiejus/zig.git
Log | Tree | Refs | README | LICENSE

commit 21b7ceb5e56c80208782b1cf6c235c0d1bba8da2 (tree)
parent fe6c3e58ef11c8377ce4adfc89301bf4edaf42ab
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Tue, 19 May 2026 20:11:28 +0200

std.fs.test: disable `Dir.renamePreserve onto existing` test on Windows

https://codeberg.org/ziglang/zig/issues/35359

Diffstat:
Mlib/std/fs/test.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig @@ -1075,6 +1075,8 @@ test "Dir.rename file <-> dir" { } test "Dir.renamePreserve onto existing" { + if (native_os == .windows) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35359 + try testWithAllSupportedPathTypes(struct { fn impl(ctx: *TestContext) !void { const io = ctx.io;