authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-02-11 15:28:30+01:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-02-11 17:03:10+01:00
logf8fd8c481ad4778c580691ed374561cd650fd7d3
tree1559e7262d6fe32b5b5990c9f95f8da8a5f27484
parentea8755fda9a76294a711715142e861c8a3333ed2

test: Skip the atomic-on-fp test for riscv64


1 files changed, 2 insertions(+), 2 deletions(-)

test/stage1/behavior/atomics.zig+2-2
......@@ -146,8 +146,8 @@ fn testAtomicStore() void {
146146}
147147
148148test "atomicrmw with floats" {
149 if (builtin.arch == .aarch64 or builtin.arch == .arm)
150 return;
149 if (builtin.arch == .aarch64 or builtin.arch == .arm or builtin.arch == .riscv64)
150 return error.SkipZigTest;
151151 testAtomicRmwFloat();
152152}
153153