disable test on mipsel
This commit is contained in:
parent
710b05b153
commit
ce19638cd4
@ -149,10 +149,10 @@ fn testAtomicStore() void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
test "atomicrmw with floats" {
|
test "atomicrmw with floats" {
|
||||||
comptime testAtomicRmwFloat();
|
|
||||||
if (builtin.arch == .aarch64 or builtin.arch == .arm or builtin.arch == .riscv64)
|
if (builtin.arch == .aarch64 or builtin.arch == .arm or builtin.arch == .riscv64)
|
||||||
return error.SkipZigTest;
|
return error.SkipZigTest;
|
||||||
testAtomicRmwFloat();
|
testAtomicRmwFloat();
|
||||||
|
comptime testAtomicRmwFloat();
|
||||||
}
|
}
|
||||||
|
|
||||||
fn testAtomicRmwFloat() void {
|
fn testAtomicRmwFloat() void {
|
||||||
@ -167,8 +167,10 @@ fn testAtomicRmwFloat() void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
test "atomicrmw with ints" {
|
test "atomicrmw with ints" {
|
||||||
testAtomicRmwFloat();
|
if (builtin.arch == .mipsel)
|
||||||
comptime testAtomicRmwFloat();
|
return error.SkipZigTest;
|
||||||
|
testAtomicRmwInt();
|
||||||
|
comptime testAtomicRmwInt();
|
||||||
}
|
}
|
||||||
|
|
||||||
fn testAtomicRmwInt() void {
|
fn testAtomicRmwInt() void {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user