diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-08-23 12:46:31 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-09-19 09:37:53 -0700 |
| commit | 3acf0f637eb02a9ab755a59167de7b67c3c3c699 (patch) | |
| tree | d0f7ee8740539b19986589c5a96880d455cfaa87 /test/tests.zig | |
| parent | cd6a236279d3c0fb60d6fd0bb61f91b2ff5dc22e (diff) | |
| download | zig-3acf0f637eb02a9ab755a59167de7b67c3c3c699.tar.gz zig-3acf0f637eb02a9ab755a59167de7b67c3c3c699.zip | |
disable failing mips tests due to LLVM 17 regressions
tracked by #16846
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/test/tests.zig b/test/tests.zig index 45fffc7dc2..9b39b36393 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -275,13 +275,14 @@ const test_targets = blk: { // .link_libc = true, //}, - .{ - .target = .{ - .cpu_arch = .mips, - .os_tag = .linux, - .abi = .none, - }, - }, + // https://github.com/ziglang/zig/issues/16846 + //.{ + // .target = .{ + // .cpu_arch = .mips, + // .os_tag = .linux, + // .abi = .none, + // }, + //}, .{ .target = .{ @@ -302,13 +303,14 @@ const test_targets = blk: { // .link_libc = true, //}, - .{ - .target = .{ - .cpu_arch = .mipsel, - .os_tag = .linux, - .abi = .none, - }, - }, + // https://github.com/ziglang/zig/issues/16846 + //.{ + // .target = .{ + // .cpu_arch = .mipsel, + // .os_tag = .linux, + // .abi = .none, + // }, + //}, .{ .target = .{ |
