add skip_foreign_checks=true on a standalone test

This commit is contained in:
Andrew Kelley 2023-03-13 17:26:38 -07:00
parent 66eb910fe4
commit fa9108c3d4

View File

@ -17,5 +17,8 @@ pub fn build(b: *std.Build) void {
});
main.pie = true;
test_step.dependOn(&main.run().step);
const run = main.run();
run.skip_foreign_checks = true;
test_step.dependOn(&run.step);
}