diff options
author | Brad King <brad.king@kitware.com> | 2009-09-16 19:09:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-16 19:09:10 (GMT) |
commit | d23d268e39a202d5cd9e62c9d4dbaf875dedb333 (patch) | |
tree | 43dcb0a3e4a8f2a41ce7a926d9083b55f0dc9f4a /Tests/CMakeTests/CheckCMakeTest.cmake | |
parent | 9d967ed47b69669e6eb4996ab3e76f5a6151464d (diff) | |
download | CMake-d23d268e39a202d5cd9e62c9d4dbaf875dedb333.zip CMake-d23d268e39a202d5cd9e62c9d4dbaf875dedb333.tar.gz CMake-d23d268e39a202d5cd9e62c9d4dbaf875dedb333.tar.bz2 |
Factor out CMake.File test result check for re-use
The CMake.File test runs several scripts through "cmake -P" and checks
the output and result against known good values. This commit factors
out the checking code into a separate CMakeCheckTest module. The module
may be used by new tests.
Diffstat (limited to 'Tests/CMakeTests/CheckCMakeTest.cmake')
-rw-r--r-- | Tests/CMakeTests/CheckCMakeTest.cmake | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Tests/CMakeTests/CheckCMakeTest.cmake b/Tests/CMakeTests/CheckCMakeTest.cmake new file mode 100644 index 0000000..2e4fedd --- /dev/null +++ b/Tests/CMakeTests/CheckCMakeTest.cmake @@ -0,0 +1,30 @@ +get_filename_component(CMakeTests_SRC_DIR ${CMAKE_CURRENT_LIST_FILE} PATH) +function(check_cmake_test prefix) + get_filename_component(CMakeTests_BIN_DIR ${CMAKE_CURRENT_LIST_FILE} PATH) + foreach(test ${ARGN}) + message(STATUS "Test ${prefix}-${test}...") + execute_process( + COMMAND ${CMAKE_COMMAND} -P "${CMakeTests_SRC_DIR}/${prefix}-${test}.cmake" + WORKING_DIRECTORY "${CMakeTests_BIN_DIR}" + OUTPUT_VARIABLE stdout + ERROR_VARIABLE stderr + RESULT_VARIABLE result + ) + string(REGEX REPLACE "\n" "\n out> " out " out> ${stdout}") + string(REGEX REPLACE "\n" "\n err> " err " err> ${stderr}") + if(NOT "${result}" STREQUAL ${${test}-RESULT}) + message(FATAL_ERROR + "Test ${test} result is [${result}], not [${${test}-RESULT}].\n" + "Test ${test} output:\n" + "${out}\n" + "${err}") + endif() + if(${test}-STDERR AND NOT "${err}" MATCHES "${${test}-STDERR}") + message(FATAL_ERROR + "Test ${test} stderr does not match\n ${${test}-STDERR}\n" + "Test ${test} output:\n" + "${out}\n" + "${err}") + endif() + endforeach() +endfunction() |