mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
disable std lib test failing with self-hosted ReleaseSafe
I opened a corresponding issue #12178 which has the 0.10.0 milestone, so this must be fixed before we release.
This commit is contained in:
parent
1ec50613bf
commit
21064d9144
1 changed files with 6 additions and 0 deletions
|
|
@ -375,6 +375,12 @@ test "testHash struct" {
|
||||||
}
|
}
|
||||||
|
|
||||||
test "testHash union" {
|
test "testHash union" {
|
||||||
|
const builtin = @import("builtin");
|
||||||
|
if (builtin.zig_backend == .stage2_llvm and builtin.mode == .ReleaseSafe) {
|
||||||
|
// https://github.com/ziglang/zig/issues/12178
|
||||||
|
return error.SkipZigTest;
|
||||||
|
}
|
||||||
|
|
||||||
const Foo = union(enum) {
|
const Foo = union(enum) {
|
||||||
A: u32,
|
A: u32,
|
||||||
B: bool,
|
B: bool,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue