authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-03-13 17:26:38-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-03-15 10:48:15-07:00
logfa9108c3d4cb279e2ce1412fc75eb694b5c6baaf
tree43c82eb3f66ddcd8b7da437ea365afb5b819e1c3
parent66eb910fe44af7f16046bd14de76f2356f565992

add skip_foreign_checks=true on a standalone test


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

test/standalone/pie/build.zig+4-1
...@@ -17,5 +17,8 @@ pub fn build(b: *std.Build) void {...@@ -17,5 +17,8 @@ pub fn build(b: *std.Build) void {
17 });17 });
18 main.pie = true;18 main.pie = true;
1919
20 test_step.dependOn(&main.run().step);20 const run = main.run();
21 run.skip_foreign_checks = true;
22
23 test_step.dependOn(&run.step);
21}24}