Skip to content

Commit 03ac40d

Browse files
committed
std: Disable some tests affected by #22060 for thumbeb too.
1 parent c1ae99e commit 03ac40d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/std/fmt.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2596,7 +2596,7 @@ test "positional/alignment/width/precision" {
25962596
}
25972597

25982598
test "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.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
26002600
if (builtin.target.cpu.arch == .riscv64) {
26012601
// https://github.com/ziglang/zig/issues/4486
26022602
return error.SkipZigTest;

lib/std/simd.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a
462462

463463
test "vector prefix scan" {
464464
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 == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
466466
if (builtin.cpu.arch == .aarch64_be and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21893
467467

468468
if (comptime builtin.cpu.arch.isMIPS()) {

0 commit comments

Comments
 (0)