core: Add some extra padding and clarify example-as-test

This commit is contained in:
Gabriel Ferreira
2025-09-14 23:17:46 +02:00
parent dddc5740ee
commit 5ec1ce9556

View File

@@ -818,15 +818,17 @@ void
TestRunnerImpl::PrintTestTypeList() const
{
NS_LOG_FUNCTION(this);
std::cout << " core: Run all TestSuite-based tests (exclude examples)" << std::endl;
std::cout << " example-as-test: Examples (to see if example programs run successfully)"
<< std::endl;
std::cout
<< " performance: Performance Tests (check to see if the system is as fast as expected)"
<< std::endl;
std::cout << " system: System Tests (spans modules to check integration of modules)"
<< std::endl;
std::cout << " unit: Unit Tests (within modules to check basic functionality)"
std::cout << " core: Run all TestSuite-based tests (exclude examples)" << std::endl
<< " example: Examples (to see if example programs run successfully)"
<< std::endl
<< " example-as-test: Examples (which are tested against reference outputs)"
<< std::endl
<< " performance: Performance Tests (check to see if the system is as fast as "
"expected)"
<< std::endl
<< " system: System Tests (spans modules to check integration of modules)"
<< std::endl
<< " unit: Unit Tests (within modules to check basic functionality)"
<< std::endl;
}