zig

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

commit e0bf7b6424a4b3d21e10e9371e0ebed7ba9730a5 (tree)
parent a88c0b4d089d286e36351cf476c8d982fb730541
Author: Jakub Konka <kubkon@jakubkonka.com>
Date:   Sat,  1 Apr 2023 20:02:33 +0200

link-test: skip foreign checks in entry_in_archive MachO test

Diffstat:
Mtest/link/macho/entry_in_archive/build.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/test/link/macho/entry_in_archive/build.zig b/test/link/macho/entry_in_archive/build.zig @@ -30,6 +30,7 @@ fn add(b: *std.Build, test_step: *std.Build.Step, optimize: std.builtin.Optimize exe.linkLibC(); const run = exe.run(); + run.skip_foreign_checks = true; run.expectExitCode(0); test_step.dependOn(&run.step); }