From bc278719d948d4d91860445c3b30547b36a448a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 8 Sep 2024 01:43:30 +0200 Subject: [PATCH] test: Disable `shared_lib_unwind` on `x86_64-macos`. https://github.com/ziglang/zig/issues/21337 --- test/standalone/stack_iterator/shared_lib_unwind.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/test/standalone/stack_iterator/shared_lib_unwind.zig b/test/standalone/stack_iterator/shared_lib_unwind.zig index 57513a49c6..d8e2e883d5 100644 --- a/test/standalone/stack_iterator/shared_lib_unwind.zig +++ b/test/standalone/stack_iterator/shared_lib_unwind.zig @@ -37,6 +37,7 @@ extern fn frame0( pub fn main() !void { // Disabled until the DWARF unwinder bugs on .aarch64 are solved if (builtin.omit_frame_pointer and comptime builtin.target.isDarwin() and builtin.cpu.arch == .aarch64) return; + if (builtin.target.isDarwin() and builtin.cpu.arch == .x86_64) return; // https://github.com/ziglang/zig/issues/21337 if (!std.debug.have_ucontext or !std.debug.have_getcontext) return;