Commit 2252951066

Vexu <git@vexu.eu>
2019-12-17 00:57:06
disable test on arm
1 parent ab7fc33
Changed files (1)
test
stage1
behavior
test/stage1/behavior/atomics.zig
@@ -146,6 +146,8 @@ fn testAtomicStore() void {
 }
 
 test "atomicrmw with floats" {
+    if (builtin.arch == .aarch64 or builtin.arch == .arm)
+        return;
     testAtomicRmwFloat();
 }