mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:47:35 +00:00
LibTest: Don't output information on tests if none exist
This commit is contained in:
parent
2812ef246d
commit
66c12af45f
1 changed files with 3 additions and 1 deletions
|
@ -174,6 +174,8 @@ int TestSuite::run(Vector<NonnullRefPtr<TestCase>> const& tests)
|
||||||
m_testtime,
|
m_testtime,
|
||||||
m_benchtime,
|
m_benchtime,
|
||||||
global_timer.elapsed_milliseconds() - (m_testtime + m_benchtime));
|
global_timer.elapsed_milliseconds() - (m_testtime + m_benchtime));
|
||||||
|
|
||||||
|
if (test_count != 0)
|
||||||
dbgln("Out of {} tests, {} passed and {} failed.", test_count, test_count - test_failed_count, test_failed_count);
|
dbgln("Out of {} tests, {} passed and {} failed.", test_count, test_count - test_failed_count, test_failed_count);
|
||||||
|
|
||||||
return (int)test_failed_count;
|
return (int)test_failed_count;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue