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