From 2a6f86ec5ebe45776dfada6dbef4ab5aa43377ab Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 28 Oct 2024 11:16:00 -0400 Subject: [PATCH] Tests/CMakeLib: Remove stray output from test loop --- Tests/CMakeLib/testCommon.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tests/CMakeLib/testCommon.h b/Tests/CMakeLib/testCommon.h index de4a6895f4..56e5ef4532 100644 --- a/Tests/CMakeLib/testCommon.h +++ b/Tests/CMakeLib/testCommon.h @@ -40,10 +40,9 @@ inline int runTests(std::initializer_list> const& tests, break; } } - std::cout << '.'; } - if (!result) { - std::cout << " Passed\n"; + if (result == 0) { + std::cout << "Passed\n"; } return result; }