Try running only H5TEST_links to see if that runs, and cat the

LastTest*.log* file if it appears.
This commit is contained in:
Larry Knox
2019-10-24 16:59:15 -05:00
parent ae57c85ef8
commit 68d25865b1
2 changed files with 11 additions and 2 deletions

View File

@@ -286,6 +286,13 @@ message (STATUS "Dashboard script configuration:\n${vars}\n")
execute_process (COMMAND ${LOCAL_BATCH_SCRIPT_COMMAND} ${LOCAL_BATCH_SCRIPT_ARGS} ${CTEST_BINARY_DIRECTORY}/${LOCAL_BATCH_SCRIPT_NAME})
endif()
endif ()
message(STATUS "Check for existence of ${CTEST_BINARY_DIRECTORY}/Testing/Temporary/LastTest*.log*")
execute_process(COMMAND ls ${CTEST_BINARY_DIRECTORY}/Testing/Temporary/LastTest*.log* RESULT_VARIABLE result OUTPUT_QUIET ERROR_QUIET)
while(result)
ctest_sleep(30)
execute_process(COMMAND ls ${CTEST_BINARY_DIRECTORY}/Testing/Temporary/LastTest*.log* RESULT_VARIABLE result OUTPUT_QUIET ERROR_QUIET)
endwhile(result)
execute_process(COMMAND cat ${CTEST_BINARY_DIRECTORY}/Testing/Temporary/LastTest*.log*)
message(STATUS "Check for existence of ${CTEST_BINARY_DIRECTORY}/Testing/${TAG_CONTENTS}/Test.xml")
execute_process(COMMAND ls ${CTEST_BINARY_DIRECTORY}/Testing/${TAG_CONTENTS}/Test.xml RESULT_VARIABLE result OUTPUT_QUIET ERROR_QUIET)
while(result)