| author | |
| committer | |
| log | fa9108c3d4cb279e2ce1412fc75eb694b5c6baaf |
| tree | 43c82eb3f66ddcd8b7da437ea365afb5b819e1c3 |
| parent | 66eb910fe44af7f16046bd14de76f2356f565992 |
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; |
| 19 | 19 | ||
| 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 | } |