test: Silence stderr output from test_obj_link_run.

This commit is contained in:
Alex Rønne Petersen 2025-05-15 14:41:27 +02:00 committed by Matthew Lugg
parent 224e39316f
commit 9279ff888b

View file

@ -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);
}