Commit ce19638cd4

Vexu <git@vexu.eu>
2020-03-12 16:31:10
disable test on mipsel
1 parent 710b05b
Changed files (1)
test
stage1
behavior
test/stage1/behavior/atomics.zig
@@ -149,10 +149,10 @@ fn testAtomicStore() void {
 }
 
 test "atomicrmw with floats" {
-    comptime testAtomicRmwFloat();
     if (builtin.arch == .aarch64 or builtin.arch == .arm or builtin.arch == .riscv64)
         return error.SkipZigTest;
     testAtomicRmwFloat();
+    comptime testAtomicRmwFloat();
 }
 
 fn testAtomicRmwFloat() void {
@@ -167,8 +167,10 @@ fn testAtomicRmwFloat() void {
 }
 
 test "atomicrmw with ints" {
-    testAtomicRmwFloat();
-    comptime testAtomicRmwFloat();
+    if (builtin.arch == .mipsel)
+        return error.SkipZigTest;
+    testAtomicRmwInt();
+    comptime testAtomicRmwInt();
 }
 
 fn testAtomicRmwInt() void {