| author | |
| committer | |
| log | 8a9f8a1d77cab1830aabfee5826b7bc03ce3b51a |
| tree | 977c4eb977eeca5c02f3f8612d175c94d91d3e1b |
| parent | 401de6dd2f3137569bf7a03f596ffe51ce343169 |
Tracked by #168461 files changed, 5 insertions(+), 0 deletions(-)
test/behavior/atomics.zig+5| ... | ... | @@ -243,6 +243,11 @@ test "atomicrmw with ints" { |
| 243 | 243 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 244 | 244 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; |
| 245 | 245 | |
| 246 | if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isMIPS()) { | |
| 247 | // https://github.com/ziglang/zig/issues/16846 | |
| 248 | return error.SkipZigTest; | |
| 249 | } | |
| 250 | ||
| 246 | 251 | try testAtomicRmwInts(); |
| 247 | 252 | try comptime testAtomicRmwInts(); |
| 248 | 253 | } |