Skip to content

Commit d5dc6a7

Browse files
committed
CMake: hide Found X tests
The top level configure hides the noisy test setup log but currently prints a somewhat misplaced final line. Hide it by turning it from an error into a normal status message. Before: ``` -- ===== Configuring ASPECT build targets ============= -- Linking ASPECT against zlib -- Linking ASPECT against NetCDF -- Linking ASPECT against WorldBuilder -- Linking ASPECT against dlopen -- Precompiling common header files. -- Combining source files into unity build. -- Writing externally readable configuration information -- Setting up test project, see tests/setup_tests.log for details. Found 1 tests. -- Writing configuration details into detailed.log... ```
1 parent d87e925 commit d5dc6a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,4 +432,4 @@ foreach(_test ${_tests})
432432
endif()
433433
endforeach()
434434

435-
message("Found ${_n_tests} tests.")
435+
message(STATUS "Found ${_n_tests} tests.")

0 commit comments

Comments
 (0)