Commit e04bb4c007

Andrew Kelley <andrew@ziglang.org>
2023-08-25 21:32:00
disable failing test: standalone.shared_library on aarch64-windows
Regressed by LLVM 17 Tracked by #16959
1 parent e36ec53
Changed files (1)
test
standalone
shared_library
test/standalone/shared_library/build.zig
@@ -4,6 +4,13 @@ pub fn build(b: *std.Build) void {
     const test_step = b.step("test", "Test it");
     b.default_step = test_step;
 
+    if (@import("builtin").os.tag == .windows and
+        @import("builtin").cpu.arch == .aarch64)
+    {
+        // https://github.com/ziglang/zig/issues/16959
+        return;
+    }
+
     const optimize: std.builtin.OptimizeMode = .Debug;
     const target: std.zig.CrossTarget = .{};
     const lib = b.addSharedLibrary(.{