authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-20 12:50:58-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-20 12:50:58-07:00
log21064d9144433d0ceaa7c1d902ecbb2471f0546c
tree789940faa00db6599ca6cfa1413038e812f753c2
parent1ec50613bf2c492839fe798aeaaae789344eedf4

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.

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

lib/std/hash/auto_hash.zig+6
......@@ -375,6 +375,12 @@ test "testHash struct" {
375375}
376376
377377test "testHash union" {
378 const builtin = @import("builtin");
379 if (builtin.zig_backend == .stage2_llvm and builtin.mode == .ReleaseSafe) {
380 // https://github.com/ziglang/zig/issues/12178
381 return error.SkipZigTest;
382 }
383
378384 const Foo = union(enum) {
379385 A: u32,
380386 B: bool,