authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-10-29 19:18:02-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-10-30 01:09:31-07:00
log5339cac2ef69d81913444ae50c7b060e97e80709
tree67c159906eb0c83714654ed7d633d94457c7cf1e
parent209a0d2a83c4d60d776a6346752732f35d146a45

std: re-enable auto hash test

It was temporarily disabled due to a self-hosted compiler miscompilation. closes #12178

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

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