diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-08-24 14:39:41 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-09-19 09:37:53 -0700 |
| commit | 5d92cc8cf60330c535aeb7361eaeede19eb61bbf (patch) | |
| tree | daacc0cd10f070a6713937ac0bd013c10e18aa9c /test | |
| parent | 5b8af7a2a9140fd0533961b62addc61f57b33343 (diff) | |
| download | zig-5d92cc8cf60330c535aeb7361eaeede19eb61bbf.tar.gz zig-5d92cc8cf60330c535aeb7361eaeede19eb61bbf.zip | |
skip all mips tests due to LLVM 17 regressions
Tracked by #16846
Diffstat (limited to 'test')
| -rw-r--r-- | test/tests.zig | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/test/tests.zig b/test/tests.zig index 9b39b36393..6f863bae8d 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -284,14 +284,15 @@ const test_targets = blk: { // }, //}, - .{ - .target = .{ - .cpu_arch = .mips, - .os_tag = .linux, - .abi = .musl, - }, - .link_libc = true, - }, + // https://github.com/ziglang/zig/issues/16846 + //.{ + // .target = .{ + // .cpu_arch = .mips, + // .os_tag = .linux, + // .abi = .musl, + // }, + // .link_libc = true, + //}, // https://github.com/ziglang/zig/issues/4927 //.{ @@ -312,14 +313,15 @@ const test_targets = blk: { // }, //}, - .{ - .target = .{ - .cpu_arch = .mipsel, - .os_tag = .linux, - .abi = .musl, - }, - .link_libc = true, - }, + // https://github.com/ziglang/zig/issues/16846 + //.{ + // .target = .{ + // .cpu_arch = .mipsel, + // .os_tag = .linux, + // .abi = .musl, + // }, + // .link_libc = true, + //}, // https://github.com/ziglang/zig/issues/4927 //.{ |
