2009-04-29 21:13:58 +04:00
|
|
|
set(Copy-BadArg-RESULT 1)
|
|
|
|
set(Copy-BadArg-STDERR "unknown argument \"BADARG\"")
|
|
|
|
set(Copy-BadPerm-RESULT 1)
|
|
|
|
set(Copy-BadPerm-STDERR "COPY given invalid permission \"BADPERM\"")
|
|
|
|
set(Copy-BadRegex-RESULT 1)
|
|
|
|
set(Copy-BadRegex-STDERR "could not compile REGEX")
|
|
|
|
set(Copy-EarlyArg-RESULT 1)
|
|
|
|
set(Copy-EarlyArg-STDERR "option PERMISSIONS may not appear before")
|
|
|
|
set(Copy-LateArg-RESULT 1)
|
|
|
|
set(Copy-LateArg-STDERR "option FILE_PERMISSIONS may not appear after")
|
|
|
|
set(Copy-NoDest-RESULT 1)
|
|
|
|
set(Copy-NoDest-STDERR "given no DESTINATION")
|
|
|
|
set(Copy-NoFile-RESULT 1)
|
2009-04-29 22:02:54 +04:00
|
|
|
set(Copy-NoFile-STDERR "COPY cannot find.*/does_not_exist\\.txt")
|
2009-04-29 21:13:58 +04:00
|
|
|
|
2009-09-16 23:09:10 +04:00
|
|
|
include("@CMAKE_CURRENT_SOURCE_DIR@/CheckCMakeTest.cmake")
|
|
|
|
check_cmake_test(File
|
|
|
|
Copy-BadArg
|
|
|
|
Copy-BadPerm
|
|
|
|
Copy-BadRegex
|
|
|
|
Copy-EarlyArg
|
|
|
|
Copy-LateArg
|
|
|
|
Copy-NoDest
|
|
|
|
Copy-NoFile
|
|
|
|
)
|
2009-10-16 23:07:41 +04:00
|
|
|
|
|
|
|
# Also execute each test listed in FileTestScript.cmake:
|
|
|
|
#
|
|
|
|
set(scriptname "@CMAKE_CURRENT_SOURCE_DIR@/FileTestScript.cmake")
|
2009-10-17 20:12:07 +04:00
|
|
|
set(number_of_tests_expected 56)
|
2009-10-16 23:07:41 +04:00
|
|
|
|
|
|
|
include("@CMAKE_CURRENT_SOURCE_DIR@/ExecuteScriptTests.cmake")
|
|
|
|
execute_all_script_tests(${scriptname} number_of_tests_executed)
|
|
|
|
|
|
|
|
# And verify that number_of_tests_executed is at least as many as we know
|
|
|
|
# about as of this writing...
|
|
|
|
#
|
|
|
|
message(STATUS "scriptname='${scriptname}'")
|
|
|
|
message(STATUS "number_of_tests_executed='${number_of_tests_executed}'")
|
|
|
|
message(STATUS "number_of_tests_expected='${number_of_tests_expected}'")
|
|
|
|
|
|
|
|
if(number_of_tests_executed LESS number_of_tests_expected)
|
|
|
|
message(FATAL_ERROR "error: some test cases were skipped")
|
|
|
|
endif()
|