| ... | ... | @@ -149,10 +149,10 @@ fn testAtomicStore() void { |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | test "atomicrmw with floats" { |
| 152 | | comptime testAtomicRmwFloat(); |
| 153 | 152 | if (builtin.arch == .aarch64 or builtin.arch == .arm or builtin.arch == .riscv64) |
| 154 | 153 | return error.SkipZigTest; |
| 155 | 154 | testAtomicRmwFloat(); |
| 155 | comptime testAtomicRmwFloat(); |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | fn testAtomicRmwFloat() void { |
| ... | ... | @@ -167,8 +167,10 @@ fn testAtomicRmwFloat() void { |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | test "atomicrmw with ints" { |
| 170 | | testAtomicRmwFloat(); |
| 171 | | comptime testAtomicRmwFloat(); |
| 170 | if (builtin.arch == .mipsel) |
| 171 | return error.SkipZigTest; |
| 172 | testAtomicRmwInt(); |
| 173 | comptime testAtomicRmwInt(); |
| 172 | 174 | } |
| 173 | 175 | |
| 174 | 176 | fn testAtomicRmwInt() void { |