From 5339cac2ef69d81913444ae50c7b060e97e80709 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 29 Oct 2022 19:18:02 -0700 Subject: [PATCH] std: re-enable auto hash test It was temporarily disabled due to a self-hosted compiler miscompilation. closes #12178 --- lib/std/hash/auto_hash.zig | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/std/hash/auto_hash.zig b/lib/std/hash/auto_hash.zig index 32f4f4378f..56cb4c726c 100644 --- a/lib/std/hash/auto_hash.zig +++ b/lib/std/hash/auto_hash.zig @@ -374,12 +374,6 @@ test "testHash struct" { } 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) { A: u32, B: bool,