authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-04-01 20:02:33+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-04-01 20:02:33+02:00
loge0bf7b6424a4b3d21e10e9371e0ebed7ba9730a5
tree23258a2a83fc450c430e8c29f301cdd7cb2060de
parenta88c0b4d089d286e36351cf476c8d982fb730541

link-test: skip foreign checks in entry_in_archive MachO test


1 files changed, 1 insertions(+), 0 deletions(-)

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