authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-08 01:43:30+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-09-19 18:20:21-07:00
logbc278719d948d4d91860445c3b30547b36a448a9
tree088ce35bc210cd522362eb6109587cb15fbb6be4
parent335ed630a06d6f95ecc3c8be7548329407e1602e

test: Disable `shared_lib_unwind` on `x86_64-macos`.

https://github.com/ziglang/zig/issues/21337

1 files changed, 1 insertions(+), 0 deletions(-)

test/standalone/stack_iterator/shared_lib_unwind.zig+1
......@@ -37,6 +37,7 @@ extern fn frame0(
3737pub fn main() !void {
3838 // Disabled until the DWARF unwinder bugs on .aarch64 are solved
3939 if (builtin.omit_frame_pointer and comptime builtin.target.isDarwin() and builtin.cpu.arch == .aarch64) return;
40 if (builtin.target.isDarwin() and builtin.cpu.arch == .x86_64) return; // https://github.com/ziglang/zig/issues/21337
4041
4142 if (!std.debug.have_ucontext or !std.debug.have_getcontext) return;
4243