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