From 3e3553b8b6704c7e93bf28465f3c04ee5ec210c6 Mon Sep 17 00:00:00 2001 From: samy-00007 <42971876+samy-00007@users.noreply.github.com> Date: Thu, 1 Aug 2024 10:36:37 +0200 Subject: [PATCH] ignore test for wasm due to #20890 Co-authored-by: Ryan Liptak --- lib/std/fs/test.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/std/fs/test.zig b/lib/std/fs/test.zig index 6d7f760581bc..ae4496cd8b65 100644 --- a/lib/std/fs/test.zig +++ b/lib/std/fs/test.zig @@ -299,6 +299,9 @@ test "File.stat on a File that is a symlink returns Kind.sym_link" { } test "Dir.statLink" { + // https://github.com/ziglang/zig/issues/20890 + if (native_os == .wasi and builtin.link_libc) return error.SkipZigTest; + try testWithAllSupportedPathTypes(struct { fn impl(ctx: *TestContext) !void { const dir_target_path = try ctx.transformPath("test_file");