authorgravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2023-08-31 18:01:15-07:00
committergravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2023-08-31 18:01:15-07:00
log01f9cdd21a8f18941636c061a5985a040e4a4bcd
treeb5e27bdd89b6b4edf629b72efe21330634317ab8
parentf46008c1d8bce5dd8d1d0155fc3bd1c865870c79

Temporarily disable Dir.statFile test when linking glibc

See https://github.com/ziglang/zig/issues/17034

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

lib/std/fs/test.zig+3
......@@ -570,6 +570,9 @@ test "readAllAlloc" {
570570}
571571
572572test "Dir.statFile" {
573 // TODO: Re-enable once https://github.com/ziglang/zig/issues/17034 is solved
574 if (builtin.os.tag == .linux and builtin.link_libc and builtin.abi == .gnu) return error.SkipZigTest;
575
573576 try testWithAllSupportedPathTypes(struct {
574577 fn impl(ctx: *TestContext) !void {
575578 const test_file_name = try ctx.transformPath("test_file");