From 5ec1ce955647ae8cb953324e95e426cdb27ea875 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Sun, 14 Sep 2025 23:17:46 +0200 Subject: [PATCH] core: Add some extra padding and clarify example-as-test --- src/core/model/test.cc | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/core/model/test.cc b/src/core/model/test.cc index a8c998b1a..1fa784c01 100644 --- a/src/core/model/test.cc +++ b/src/core/model/test.cc @@ -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; }