| ... | @@ -640,7 +640,7 @@ test "vector division operators" { | ... | @@ -640,7 +640,7 @@ test "vector division operators" { |
| 640 | }; | 640 | }; |
| 641 | | 641 | |
| 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/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 |
| 644 | try S.doTheTest(); | 644 | try S.doTheTest(); |
| 645 | } | 645 | } |
| 646 | | 646 | |
| ... | @@ -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/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 |
| 1104 | try S.doTheTest(); | 1104 | try S.doTheTest(); |
| 1105 | } | 1105 | } |
| 1106 | | 1106 | |
| ... | @@ -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/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 |
| 1138 | try S.doTheTest(); | 1138 | try S.doTheTest(); |
| 1139 | } | 1139 | } |
| 1140 | | 1140 | |
| ... | @@ -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/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 |
| 1162 | try S.doTheTest(); | 1162 | try S.doTheTest(); |
| 1163 | } | 1163 | } |
| 1164 | | 1164 | |