Commit 5339cac2ef

Andrew Kelley <andrew@ziglang.org>
2022-10-30 03:18:02
std: re-enable auto hash test
It was temporarily disabled due to a self-hosted compiler miscompilation. closes #12178
1 parent 209a0d2
Changed files (1)
lib
std
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,