From 1564cb0ab978b904e612a056c013bce8d6663a1b Mon Sep 17 00:00:00 2001 From: Pat Tullmann Date: Mon, 23 Oct 2023 15:23:19 -0700 Subject: [PATCH] std/fs/test.zig: Remove work-around for stat() failures on glibc glibc variants now support the stat-family of calls correctly, so this test is safe to include. --- lib/std/fs/test.zig | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig index 95cacd25d1..cd50b8aae8 100644 --- a/lib/std/fs/test.zig +++ b/lib/std/fs/test.zig @@ -660,9 +660,6 @@ test "readAllAlloc" { } test "Dir.statFile" { - // TODO: Re-enable once https://github.com/ziglang/zig/issues/17034 is solved - if (builtin.os.tag == .linux and builtin.link_libc and builtin.abi == .gnu) return error.SkipZigTest; - try testWithAllSupportedPathTypes(struct { fn impl(ctx: *TestContext) !void { const test_file_name = try ctx.transformPath("test_file");