From 3bded9cf29e2d2282123b97e4b1b447bf4661cbe Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 22 Mar 2020 18:54:19 -0400 Subject: [PATCH] disable failing stack trace test for aarch64 --- test/stack_traces.zig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/stack_traces.zig b/test/stack_traces.zig index 0b6d2ae74..0a29f3240 100644 --- a/test/stack_traces.zig +++ b/test/stack_traces.zig @@ -291,11 +291,15 @@ pub fn addCases(cases: *tests.StackTracesContext) void { \\ , // release-safe + switch (std.Target.current.cpu.arch) { + .aarch64 => "", // TODO disabled; results in segfault + else => \\start.zig:123:5: [address] in std.start._start (test) \\ @call(.{ .modifier = .never_inline }, posixCallMainAndExit, .{}); \\ ^ \\ - , + , + }, // release-fast \\ ,