aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorFelix "xq" Queißner <git@random-projects.net>2023-07-26 16:32:50 +0200
committerAndrew Kelley <andrew@ziglang.org>2023-07-30 11:18:50 -0700
commit35d0a49db911e9c459902a021a5bfa05c97ca107 (patch)
tree4c3d3c526fe4bcca50ca30fb1ec0ff1b785360f4 /test/tests.zig
parent5c0181841081170a118d8e50af2a09f5006f59e1 (diff)
downloadzig-35d0a49db911e9c459902a021a5bfa05c97ca107.tar.gz
zig-35d0a49db911e9c459902a021a5bfa05c97ca107.zip
Introduces Compile.forceBuild() and Compile.forceEmit(…)
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 0b317c5897..4174fc0147 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -588,7 +588,7 @@ pub fn addStandaloneTests(
});
if (case.link_libc) exe.linkLibC();
- _ = exe.getEmittedBin(); // Force emission
+ exe.forceBuild();
step.dependOn(&exe.step);
}