disable some tests that fail on x86_64-macos

These might be Rosetta 2 bugs, but I have no way to actually check since we no
longer have any native x86_64-macos CI machines.
This commit is contained in:
Alex Rønne Petersen
2026-05-09 08:15:30 +02:00
parent a85a29ae4d
commit 72966e2a7b
7 changed files with 20 additions and 0 deletions
+1
View File
@@ -278,6 +278,7 @@ test "array to vector with element type coercion" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
if (builtin.target.cpu.arch == .x86_64 and builtin.target.os.tag == .macos) return error.SkipZigTest;
const S = struct {
fn doTheTest() !void {