commit 8a9f8a1d77cab1830aabfee5826b7bc03ce3b51a (tree)
parent 401de6dd2f3137569bf7a03f596ffe51ce343169
Author: Jacob Young <jacobly0@users.noreply.github.com>
Date: Sat, 19 Aug 2023 04:20:04 -0400
behavior: disable another test regressed by LLVM 17 for mips
Tracked by #16846
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/test/behavior/atomics.zig b/test/behavior/atomics.zig
@@ -243,6 +243,11 @@ test "atomicrmw with ints" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
+ if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isMIPS()) {
+ // https://github.com/ziglang/zig/issues/16846
+ return error.SkipZigTest;
+ }
+
try testAtomicRmwInts();
try comptime testAtomicRmwInts();
}