Commit 4fd1ec78e9

LemonBoy <thatlemon@gmail.com>
2020-11-02 11:46:26
std: Re-enable union behaviour test for mips targets
1 parent 307496f
Changed files (1)
test
stage1
behavior
test/stage1/behavior/union.zig
@@ -623,9 +623,6 @@ test "0-sized extern union definition" {
 }
 
 test "union initializer generates padding only if needed" {
-    // https://github.com/ziglang/zig/issues/5127
-    if (std.Target.current.cpu.arch == .mips) return error.SkipZigTest;
-
     const U = union(enum) {
         A: u24,
     };