Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit c9693b9

Browse files
committed
ctest: add status to new messages for git
1 parent 764fe36 commit c9693b9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.ctest.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ endif()
242242
ctest_update(BUILD ${CTEST_SOURCE_DIRECTORY} RETURN_VALUE git_result)
243243
set(git_retries 0)
244244
while(git_result LESS 0 AND git_retries LESS 10)
245-
message("Failed to update source code from " ${source_url})
246-
message("Problems checking out from git repository."
245+
message(STATUS "Failed to update source code from " ${source_url})
246+
message(STATUS "Problems checking out from git repository."
247247
" Status: ${git_result}. Retries: ${git_retries}")
248248
ctest_sleep(60)
249249
math(EXPR git_retries "${git_retries} + 1")
@@ -254,7 +254,7 @@ if (git_result LESS 0)
254254
message(FATAL_ERROR "Failed to update source code from git.")
255255
endif()
256256

257-
message("Successfully updated source code from ${source_url}."
257+
message(STATUS "Successfully updated source code from ${source_url}."
258258
" Read ${git_result} new files.")
259259

260260
#

0 commit comments

Comments
 (0)