Commit 31ff6e3fc1

Andrew Kelley <andrew@ziglang.org>
2023-08-25 21:37:39
disable failing test: standalone.load_dynamic_library on aarch64-windows
Regressed by LLVM 17 Tracked by #16960
1 parent e04bb4c
Changed files (1)
test
standalone
load_dynamic_library
test/standalone/load_dynamic_library/build.zig
@@ -10,6 +10,11 @@ pub fn build(b: *std.Build) void {
 
     if (builtin.os.tag == .wasi) return;
 
+    if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
+        // https://github.com/ziglang/zig/issues/16960
+        return;
+    }
+
     const lib = b.addSharedLibrary(.{
         .name = "add",
         .root_source_file = .{ .path = "add.zig" },