From c546ddb3edc557fae4b932e5239b9dcb66117832 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 1 Jan 2024 19:45:34 -0700 Subject: [PATCH] disable standalone coff_dwarf test on aarch64-windows See tracking issue #18427 --- test/standalone/coff_dwarf/build.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/standalone/coff_dwarf/build.zig b/test/standalone/coff_dwarf/build.zig index b85b44b686..cd7c17efb3 100644 --- a/test/standalone/coff_dwarf/build.zig +++ b/test/standalone/coff_dwarf/build.zig @@ -11,6 +11,11 @@ pub fn build(b: *std.Build) void { if (builtin.os.tag != .windows) return; + if (builtin.cpu.arch == .aarch64) { + // https://github.com/ziglang/zig/issues/18427 + return; + } + const exe = b.addExecutable(.{ .name = "main", .root_source_file = .{ .path = "main.zig" },