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" {...@@ -640,7 +640,7 @@ test "vector division operators" {
640 };640 };
641641
642 try comptime S.doTheTest();642 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/22060643 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
644 try S.doTheTest();644 try S.doTheTest();
645}645}
646646
...@@ -1100,7 +1100,7 @@ test "@addWithOverflow" {...@@ -1100,7 +1100,7 @@ test "@addWithOverflow" {
1100 }1100 }
1101 };1101 };
1102 try comptime S.doTheTest();1102 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/220601103 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
1104 try S.doTheTest();1104 try S.doTheTest();
1105}1105}
11061106
...@@ -1134,7 +1134,7 @@ test "@subWithOverflow" {...@@ -1134,7 +1134,7 @@ test "@subWithOverflow" {
1134 }1134 }
1135 };1135 };
1136 try comptime S.doTheTest();1136 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/220601137 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
1138 try S.doTheTest();1138 try S.doTheTest();
1139}1139}
11401140
...@@ -1158,7 +1158,7 @@ test "@mulWithOverflow" {...@@ -1158,7 +1158,7 @@ test "@mulWithOverflow" {
1158 }1158 }
1159 };1159 };
1160 try comptime S.doTheTest();1160 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/220601161 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
1162 try S.doTheTest();1162 try S.doTheTest();
1163}1163}
11641164