From 2806979f4f4e23ad1824cc85975e7772d5db8864 Mon Sep 17 00:00:00 2001 From: Mark Delk Date: Wed, 1 Jan 2025 14:40:24 -0600 Subject: [PATCH] fix test step name --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index d2f5be4..d6e5c09 100644 --- a/build.zig +++ b/build.zig @@ -597,7 +597,7 @@ pub fn build(b: *std.Build) !void { //-- - const test_step = b.step("test", "Build all SDL test programs"); + const test_step = b.step("sdl-test", "Build all SDL test programs"); const test_utils = b.addStaticLibrary(.{ .name = "testutils",