mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
test: Disable error union switch with call operand (ReleaseSafe) on macos.
This started failing in LLVM 20:
test
+- test-stack-traces
+- check error union switch with call operand (ReleaseSafe llvm) failure
error:
========= expected this stdout: =========
error: TheSkyIsFalling
source.zig:3:5: [address] in [function]
return error.TheSkyIsFalling;
^
========= but found: ====================
error: TheSkyIsFalling
source.zig:13:27: [address] in [function]
error.NonFatal => return,
^
This commit is contained in:
parent
4b360a1ff0
commit
7c85dc4602
1 changed files with 1 additions and 0 deletions
|
|
@ -839,6 +839,7 @@ pub fn addCases(cases: *tests.StackTracesContext) void {
|
|||
.exclude_os = &.{
|
||||
.windows, // TODO
|
||||
.linux, // defeated by aggressive inlining
|
||||
.macos, // Broken in LLVM 20.
|
||||
},
|
||||
.expect =
|
||||
\\error: TheSkyIsFalling
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue