Temporarily disable Dir.statFile test when linking glibc

See https://github.com/ziglang/zig/issues/17034
This commit is contained in:
Ryan Liptak 2023-08-31 18:01:15 -07:00
parent f46008c1d8
commit 01f9cdd21a

View File

@ -570,6 +570,9 @@ 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");