diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2024-12-02 15:20:35 +0100 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2024-12-02 15:20:38 +0100 |
commit | 0c01b3924d55e0923cf895254b9412c9cedc9047 (patch) | |
tree | 9e5cf32ab38f6ea9b1aa36127d097aaa57d5e75f /aoc24/build.zig | |
parent | ee7ee7ff1f136eceb739820d82f131ece3dd2cd2 (diff) | |
download | programming-problem-solving-0c01b3924d55e0923cf895254b9412c9cedc9047.tar.gz |
aoc2024: day 2
Diffstat (limited to 'aoc24/build.zig')
-rw-r--r-- | aoc24/build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc24/build.zig b/aoc24/build.zig index 2d5946f..4648193 100644 --- a/aoc24/build.zig +++ b/aoc24/build.zig @@ -58,7 +58,7 @@ pub fn build(b: *std.Build) void { // Similar to creating the run step earlier, this exposes a `test` step to // the `zig build --help` menu, providing a way for the user to request // running the unit tests. - const test_step = b.step(b.fmt("test-{s}", .{name}), b.fmt("Test {s}", .{name})); + const test_step = b.step(b.fmt("{s}-test", .{name}), b.fmt("Test {s}", .{name})); test_step.dependOn(&run_exe_unit_tests.step); }; } |