blob: 30807c1a689492ecff65b50a20be4098cd6cf12f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Replace INTDIR with the value of $ENV{CMAKE_CONFIG_TYPE} that is set
# by ctest when -C Debug|Releaes|etc is given, and INDIR is passed
# in from the main cmake run and is the variable that is used
# by the build system to specify the build directory
if(NOT "${INTDIR}" STREQUAL ".")
set(TEST_ORIG "${TEST}")
string(REPLACE "${INTDIR}" "$ENV{CMAKE_CONFIG_TYPE}" TEST "${TEST}")
if("$ENV{CMAKE_CONFIG_TYPE}" STREQUAL "")
if(NOT EXISTS "${TEST}")
message("Warning: CMAKE_CONFIG_TYPE not defined did you forget the -C option for ctest?")
message(FATAL_ERROR "Could not find test executable: ${TEST_ORIG}")
endif()
endif()
endif()
set(ARGS )
if(DEFINED OUTPUT)
set(ARGS OUTPUT_FILE "${OUTPUT}" ERROR_FILE "${OUTPUT}.err")
endif()
if(DEFINED INPUT)
list(APPEND ARGS INPUT_FILE "${INPUT}")
endif()
message("Running: ${TEST}")
message("ARGS= ${ARGS}")
execute_process(COMMAND "${TEST}"
${ARGS}
RESULT_VARIABLE RET)
if(DEFINED OUTPUT)
file(READ "${OUTPUT}" TEST_OUTPUT)
file(READ "${OUTPUT}.err" TEST_ERROR)
message("Test OUTPUT:\n${TEST_OUTPUT}")
message("Test ERROR:\n${TEST_ERROR}")
endif()
# if the test does not return 0, then fail it
if(NOT ${RET} EQUAL 0)
message(FATAL_ERROR "Test ${TEST} returned ${RET}")
endif()
message( "Test ${TEST} returned ${RET}")
|