aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-08-31 10:36:33 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-08-31 10:36:33 -0700
commitd0f04824f1d1a34cbc6e4bdee36893482d5e866d (patch)
tree180596b1e14d16828187f5131a5e311a8c4a1f90 /test/tests.zig
parentb25e58b0acb3153814c96161f5d6bc1fa3316800 (diff)
downloadzig-d0f04824f1d1a34cbc6e4bdee36893482d5e866d.tar.gz
zig-d0f04824f1d1a34cbc6e4bdee36893482d5e866d.zip
re-enable all the MIPS tests
LLVM 12.0.1 fixed the regressions from LLVM 12.0.0. Closes #8155
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig64
1 files changed, 30 insertions, 34 deletions
diff --git a/test/tests.zig b/test/tests.zig
index a427bbefeb..131c9a4129 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -160,24 +160,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{
@@ -189,24 +187,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{