Skip to content

Commit 52e9fd7

Browse files
committed
test: Disable vector behavior tests affected by #22060 for thumbeb too.
1 parent f54f58b commit 52e9fd7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/behavior/vector.zig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

0 commit comments

Comments
 (0)