aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-03-13 17:26:38 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-03-15 10:48:15 -0700
commitfa9108c3d4cb279e2ce1412fc75eb694b5c6baaf (patch)
tree43c82eb3f66ddcd8b7da437ea365afb5b819e1c3 /test
parent66eb910fe44af7f16046bd14de76f2356f565992 (diff)
downloadzig-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.zig5
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);
}