std.simd: Disable vector prefix scan test on aarch64_be.

See: https://github.com/ziglang/zig/issues/21893
This commit is contained in:
Alex Rønne Petersen 2024-11-03 07:57:56 +01:00
parent b72b81292f
commit 2f65c39715
No known key found for this signature in database

View File

@ -462,6 +462,7 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a
test "vector prefix scan" {
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.cpu.arch == .aarch64_be and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21893
if (comptime builtin.cpu.arch.isMIPS()) {
return error.SkipZigTest;