aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/behavior/union.zig1
-rw-r--r--test/behavior/vector.zig3
-rw-r--r--test/tests.zig64
3 files changed, 34 insertions, 34 deletions
diff --git a/test/behavior/union.zig b/test/behavior/union.zig
index f5cd61f6f4..56ea22f3cc 100644
--- a/test/behavior/union.zig
+++ b/test/behavior/union.zig
@@ -1904,6 +1904,7 @@ test "reinterpret packed union" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.cpu.arch.isPowerPC32()) return error.SkipZigTest; // TODO
+ if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21050
if (builtin.cpu.arch.isWasm()) return error.SkipZigTest; // TODO
try S.doTheTest();
}
diff --git a/test/behavior/vector.zig b/test/behavior/vector.zig
index 9957395e01..c4e00d9b0c 100644
--- a/test/behavior/vector.zig
+++ b/test/behavior/vector.zig
@@ -133,6 +133,9 @@ test "vector float operators" {
try S.doTheTest(f16);
try comptime S.doTheTest(f16);
+ // https://github.com/llvm/llvm-project/issues/102870
+ if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest;
+
try S.doTheTest(f80);
try comptime S.doTheTest(f80);
diff --git a/test/tests.zig b/test/tests.zig
index 80c7216b89..1b3ef6ad74 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -304,24 +304,22 @@ const test_targets = blk: {
.link_libc = true,
},
- // https://github.com/ziglang/zig/issues/16846
- //.{
- // .target = .{
- // .cpu_arch = .mips,
- // .os_tag = .linux,
- // .abi = .none,
- // },
- //},
+ .{
+ .target = .{
+ .cpu_arch = .mips,
+ .os_tag = .linux,
+ .abi = .none,
+ },
+ },
- // https://github.com/ziglang/zig/issues/16846
- //.{
- // .target = .{
- // .cpu_arch = .mips,
- // .os_tag = .linux,
- // .abi = .musl,
- // },
- // .link_libc = true,
- //},
+ .{
+ .target = .{
+ .cpu_arch = .mips,
+ .os_tag = .linux,
+ .abi = .musl,
+ },
+ .link_libc = true,
+ },
// https://github.com/ziglang/zig/issues/4927
//.{
@@ -333,24 +331,22 @@ const test_targets = blk: {
// .link_libc = true,
//},
- // https://github.com/ziglang/zig/issues/16846
- //.{
- // .target = .{
- // .cpu_arch = .mipsel,
- // .os_tag = .linux,
- // .abi = .none,
- // },
- //},
+ .{
+ .target = .{
+ .cpu_arch = .mipsel,
+ .os_tag = .linux,
+ .abi = .none,
+ },
+ },
- // https://github.com/ziglang/zig/issues/16846
- //.{
- // .target = .{
- // .cpu_arch = .mipsel,
- // .os_tag = .linux,
- // .abi = .musl,
- // },
- // .link_libc = true,
- //},
+ .{
+ .target = .{
+ .cpu_arch = .mipsel,
+ .os_tag = .linux,
+ .abi = .musl,
+ },
+ .link_libc = true,
+ },
// https://github.com/ziglang/zig/issues/4927
//.{