From 9279ff888bd1b00d4369b4d234e31a161f02a247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 15 May 2025 14:41:27 +0200 Subject: [PATCH] test: Silence stderr output from `test_obj_link_run`. --- test/standalone/test_obj_link_run/build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/test/standalone/test_obj_link_run/build.zig b/test/standalone/test_obj_link_run/build.zig index 49d184861d..567e073306 100644 --- a/test/standalone/test_obj_link_run/build.zig +++ b/test/standalone/test_obj_link_run/build.zig @@ -26,6 +26,7 @@ pub fn build(b: *std.Build) void { b.default_step = test_step; const test_run = b.addRunArtifact(test_exe); + test_run.addCheck(.{ .expect_stderr_match = "All 3 tests passed." }); test_step.dependOn(&test_run.step); }