Commit fa9108c3d4

Andrew Kelley <andrew@ziglang.org>
2023-03-14 01:26:38
add skip_foreign_checks=true on a standalone test
1 parent 66eb910
Changed files (1)
test
standalone
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);
 }