Commit f7e08ea780

Andrew Kelley <andrew@ziglang.org>
2021-08-31 19:36:33
re-enable all the MIPS tests
LLVM 12.0.1 fixed the regressions from LLVM 12.0.0. Closes #8155
1 parent a1d5327
Changed files (1)
test/tests.zig
@@ -153,24 +153,22 @@ const test_targets = blk: {
         //    .link_libc = true,
         //},
 
-        // https://github.com/ziglang/zig/issues/8155
-        //TestTarget{
-        //    .target = .{
-        //        .cpu_arch = .mips,
-        //        .os_tag = .linux,
-        //        .abi = .none,
-        //    },
-        //},
+        TestTarget{
+            .target = .{
+                .cpu_arch = .mips,
+                .os_tag = .linux,
+                .abi = .none,
+            },
+        },
 
-        // https://github.com/ziglang/zig/issues/8155
-        //TestTarget{
-        //    .target = .{
-        //        .cpu_arch = .mips,
-        //        .os_tag = .linux,
-        //        .abi = .musl,
-        //    },
-        //    .link_libc = true,
-        //},
+        TestTarget{
+            .target = .{
+                .cpu_arch = .mips,
+                .os_tag = .linux,
+                .abi = .musl,
+            },
+            .link_libc = true,
+        },
 
         // https://github.com/ziglang/zig/issues/4927
         //TestTarget{
@@ -182,24 +180,22 @@ const test_targets = blk: {
         //    .link_libc = true,
         //},
 
-        // https://github.com/ziglang/zig/issues/8155
-        //TestTarget{
-        //    .target = .{
-        //        .cpu_arch = .mipsel,
-        //        .os_tag = .linux,
-        //        .abi = .none,
-        //    },
-        //},
+        TestTarget{
+            .target = .{
+                .cpu_arch = .mipsel,
+                .os_tag = .linux,
+                .abi = .none,
+            },
+        },
 
-        // https://github.com/ziglang/zig/issues/8155
-        //TestTarget{
-        //    .target = .{
-        //        .cpu_arch = .mipsel,
-        //        .os_tag = .linux,
-        //        .abi = .musl,
-        //    },
-        //    .link_libc = true,
-        //},
+        TestTarget{
+            .target = .{
+                .cpu_arch = .mipsel,
+                .os_tag = .linux,
+                .abi = .musl,
+            },
+            .link_libc = true,
+        },
 
         // https://github.com/ziglang/zig/issues/4927
         //TestTarget{