Commit fa9108c3d4
Changed files (1)
test
standalone
pie
test/standalone/pie/build.zig
@@ -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);
}