Skip to content

Commit

Permalink
remove messages
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed Nov 22, 2022
1 parent fe8f7ab commit 67fc1a9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions cmake/macros/SundialsAddTest.cmake
Expand Up @@ -79,20 +79,17 @@ macro(SUNDIALS_ADD_TEST NAME EXECUTABLE)

# development only tests
if(NOT SUNDIALS_TEST_DEVTESTS AND SUNDIALS_ADD_TEST_EXAMPLE_TYPE)
message(STATUS "Test ${NAME} excluded from standard tests")
set(_add_test FALSE)
endif()

# always excluded
if("${SUNDIALS_ADD_TEST_EXAMPLE_TYPE}" STREQUAL "exclude")
message(STATUS "Test ${NAME} excluded")
set(_add_test FALSE)
endif()

# precision-specific exclusions
string(TOLOWER "exclude-${SUNDIALS_PRECISION}" _exclude_precision)
if("${SUNDIALS_ADD_TEST_EXAMPLE_TYPE}" STREQUAL _exclude_precision)
message(STATUS "Test ${NAME} excluded with ${_exclude_precision} precision")
set(_add_test FALSE)
endif()

Expand All @@ -102,8 +99,6 @@ macro(SUNDIALS_ADD_TEST NAME EXECUTABLE)

if(_add_test)

message(STATUS "Test ${NAME} added")

if(SUNDIALS_TEST_USE_RUNNER)

# command line arguments for the test runner script
Expand Down

0 comments on commit 67fc1a9

Please sign in to comment.