commit fa9108c3d4cb279e2ce1412fc75eb694b5c6baaf (tree) parent 66eb910fe44af7f16046bd14de76f2356f565992 Author: Andrew Kelley <andrew@ziglang.org> Date: Mon, 13 Mar 2023 17:26:38 -0700 add skip_foreign_checks=true on a standalone test Diffstat:
| M | test/standalone/pie/build.zig | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/test/standalone/pie/build.zig b/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); }