zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit f99a310a1a628f895b23edc320f0cd1b38cdb2dd (tree)
parent 72966e2a7b5fcd1efaba5fd13562be1cfda2df4e
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sat,  9 May 2026 22:38:14 +0200

test: don't run x86_64-macos module tests

https://codeberg.org/ziglang/zig/issues/35267

Diffstat:
Mtest/tests.zig | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -2722,6 +2722,10 @@ fn addOneModuleTest( // Don't run spirv binaries _ = these_tests.getEmittedBin(); step.dependOn(&these_tests.step); + } else if (target.cpu.arch == .x86_64 and target.os.tag.isDarwin()) { + // https://codeberg.org/ziglang/zig/issues/35267 + _ = these_tests.getEmittedBin(); + step.dependOn(&these_tests.step); } else { const run = b.addRunArtifact(these_tests); run.skip_foreign_checks = true;