From f8fd8c481ad4778c580691ed374561cd650fd7d3 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Tue, 11 Feb 2020 15:28:30 +0100 Subject: [PATCH] test: Skip the atomic-on-fp test for riscv64 --- test/stage1/behavior/atomics.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/stage1/behavior/atomics.zig b/test/stage1/behavior/atomics.zig index 7155e80094..0347f6f94a 100644 --- a/test/stage1/behavior/atomics.zig +++ b/test/stage1/behavior/atomics.zig @@ -146,8 +146,8 @@ fn testAtomicStore() void { } test "atomicrmw with floats" { - if (builtin.arch == .aarch64 or builtin.arch == .arm) - return; + if (builtin.arch == .aarch64 or builtin.arch == .arm or builtin.arch == .riscv64) + return error.SkipZigTest; testAtomicRmwFloat(); }