authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-01-06 16:20:27+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-01-06 16:20:27+01:00
log52e9fd7c3c9c92ff4cca02f10f4e2022c11d9351
tree8666d8b0dd52c575aa53a2f81b9f6d83325a5101
parentf54f58b60f1a957c73aba4a2484bb2ca05513933
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: Disable vector behavior tests affected by #22060 for thumbeb too.


1 files changed, 4 insertions(+), 4 deletions(-)

test/behavior/vector.zig+4-4
......@@ -640,7 +640,7 @@ test "vector division operators" {
640640 };
641641
642642 try comptime S.doTheTest();
643 if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
643 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
644644 try S.doTheTest();
645645}
646646
......@@ -1100,7 +1100,7 @@ test "@addWithOverflow" {
11001100 }
11011101 };
11021102 try comptime S.doTheTest();
1103 if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
1103 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
11041104 try S.doTheTest();
11051105}
11061106
......@@ -1134,7 +1134,7 @@ test "@subWithOverflow" {
11341134 }
11351135 };
11361136 try comptime S.doTheTest();
1137 if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
1137 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
11381138 try S.doTheTest();
11391139}
11401140
......@@ -1158,7 +1158,7 @@ test "@mulWithOverflow" {
11581158 }
11591159 };
11601160 try comptime S.doTheTest();
1161 if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
1161 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
11621162 try S.doTheTest();
11631163}
11641164