mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
behavior: disable another test regressed by LLVM 17 for mips
Tracked by #16846
This commit is contained in:
parent
401de6dd2f
commit
8a9f8a1d77
@ -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…
x
Reference in New Issue
Block a user