mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
behavior: disable another test regressed by LLVM 17 for mips
Tracked by #16846
This commit is contained in:
parent
401de6dd2f
commit
8a9f8a1d77
1 changed files with 5 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue