core: fix test binary name

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-01-24 00:23:15 -07:00 committed by Stephen Gutekanst
parent 2094e59627
commit cf8f94d36c

View file

@ -72,7 +72,7 @@ pub fn build(b: *Builder) !void {
}
fn testStep(b: *Builder, mode: std.builtin.Mode, target: CrossTarget) *std.build.RunStep {
const main_tests = b.addTestExe("mach-tests", "src/main.zig");
const main_tests = b.addTestExe("core-tests", "src/main.zig");
main_tests.setBuildMode(mode);
main_tests.setTarget(target);
for (pkg.dependencies.?) |dependency| {