authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-08-09 00:03:32+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-08-09 00:04:02+02:00
log8e741045bc672858dfe2ca85c8253fb755afd375
tree39ef26218708ae721adb9c596d4ff3aad3e4a6fb
parent5f2729a1a2ddbeb23ff6bd25c567d4ccd596af92
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.fs.test: disable `deleteDir` on Windows due to flakiness

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

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

lib/std/fs/test.zig+2
...@@ -939,6 +939,8 @@ test "createDirPathOpen parent dirs do not exist" {...@@ -939,6 +939,8 @@ test "createDirPathOpen parent dirs do not exist" {
939}939}
940940
941test "deleteDir" {941test "deleteDir" {
942 if (builtin.target.os.tag == .windows) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/35686
943
942 try testWithAllSupportedPathTypes(struct {944 try testWithAllSupportedPathTypes(struct {
943 fn impl(ctx: *TestContext) !void {945 fn impl(ctx: *TestContext) !void {
944 const io = ctx.io;946 const io = ctx.io;