disable test on mipsel

master
Vexu 2020-03-12 17:31:10 +02:00
parent 710b05b153
commit ce19638cd4
No known key found for this signature in database
GPG Key ID: 59AEB8936E16A6AC
1 changed files with 5 additions and 3 deletions

View File

@ -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 {