Commit e0bf7b6424

Jakub Konka <kubkon@jakubkonka.com>
2023-04-01 20:02:33
link-test: skip foreign checks in entry_in_archive MachO test
1 parent a88c0b4
Changed files (1)
test
link
macho
entry_in_archive
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);
 }