mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 12:59:04 +00:00
test: Disable vector behavior tests affected by #22060 for thumbeb too.
This commit is contained in:
parent
f54f58b60f
commit
52e9fd7c3c
@ -640,7 +640,7 @@ test "vector division operators" {
|
||||
};
|
||||
|
||||
try comptime S.doTheTest();
|
||||
if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
try S.doTheTest();
|
||||
}
|
||||
|
||||
@ -1100,7 +1100,7 @@ test "@addWithOverflow" {
|
||||
}
|
||||
};
|
||||
try comptime S.doTheTest();
|
||||
if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
try S.doTheTest();
|
||||
}
|
||||
|
||||
@ -1134,7 +1134,7 @@ test "@subWithOverflow" {
|
||||
}
|
||||
};
|
||||
try comptime S.doTheTest();
|
||||
if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
try S.doTheTest();
|
||||
}
|
||||
|
||||
@ -1158,7 +1158,7 @@ test "@mulWithOverflow" {
|
||||
}
|
||||
};
|
||||
try comptime S.doTheTest();
|
||||
if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
try S.doTheTest();
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user