diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-03-13 17:26:38 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-03-15 10:48:15 -0700 |
| commit | fa9108c3d4cb279e2ce1412fc75eb694b5c6baaf (patch) | |
| tree | 43c82eb3f66ddcd8b7da437ea365afb5b819e1c3 /test | |
| parent | 66eb910fe44af7f16046bd14de76f2356f565992 (diff) | |
| download | zig-fa9108c3d4cb279e2ce1412fc75eb694b5c6baaf.tar.gz zig-fa9108c3d4cb279e2ce1412fc75eb694b5c6baaf.zip | |
add skip_foreign_checks=true on a standalone test
Diffstat (limited to 'test')
| -rw-r--r-- | test/standalone/pie/build.zig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/standalone/pie/build.zig b/test/standalone/pie/build.zig index 546b4a922f..e7ef5f97cc 100644 --- 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); } |
