authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-24 04:35:14+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-12-13 03:13:14+01:00
log499ad89b41df7d48ea7975ff3014534b7865e619
tree16036294e86c484e70b6ac579d4a968a5720d05d
parent620f69c3b4cbd581726d2e1b3b1af05ef9ed9e26
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std: Disable some vector-related tests on armeb.

https://github.com/ziglang/zig/issues/22060

2 files changed, 2 insertions(+), 0 deletions(-)

lib/std/fmt.zig+1
...@@ -2596,6 +2596,7 @@ test "positional/alignment/width/precision" {...@@ -2596,6 +2596,7 @@ test "positional/alignment/width/precision" {
2596}2596}
25972597
2598test "vector" {2598test "vector" {
2599 if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
2599 if (builtin.target.cpu.arch == .riscv64) {2600 if (builtin.target.cpu.arch == .riscv64) {
2600 // https://github.com/ziglang/zig/issues/44862601 // https://github.com/ziglang/zig/issues/4486
2601 return error.SkipZigTest;2602 return error.SkipZigTest;
lib/std/simd.zig+1
...@@ -462,6 +462,7 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a...@@ -462,6 +462,7 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a
462462
463test "vector prefix scan" {463test "vector prefix scan" {
464 if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;464 if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
465 if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
465 if (builtin.cpu.arch == .aarch64_be and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21893466 if (builtin.cpu.arch == .aarch64_be and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21893
466467
467 if (comptime builtin.cpu.arch.isMIPS()) {468 if (comptime builtin.cpu.arch.isMIPS()) {