authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-19 20:11:28+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-19 20:11:28+02:00
log21b7ceb5e56c80208782b1cf6c235c0d1bba8da2
tree9061dbaeed815c3bb670de5b185a535522c633e4
parentfe6c3e58ef11c8377ce4adfc89301bf4edaf42ab
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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

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

1 files changed, 2 insertions(+), 0 deletions(-)

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