diff options
author | Matt McCormick <matt.mccormick@kitware.com> | 2015-03-29 02:05:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-04-08 13:06:22 (GMT) |
commit | 9160d6c241adaeacc106d5b2ce4530f223345f22 (patch) | |
tree | 9007dabd5a565f77590a4ee20ca14b33c9d79196 /Tests/RunCMake/CrosscompilingEmulator/AddTest-check.cmake | |
parent | e942526b3d9e886da4ce832d9d3adb99cc5ede2f (diff) | |
download | CMake-9160d6c241adaeacc106d5b2ce4530f223345f22.zip CMake-9160d6c241adaeacc106d5b2ce4530f223345f22.tar.gz CMake-9160d6c241adaeacc106d5b2ce4530f223345f22.tar.bz2 |
TestGenerator: Add CROSSCOMPILING_EMULATOR support.
Prefix test commands with the CROSSCOMPILING_EMULATOR property
for target executables. This allows test suites to be run on the host
when crosscompiling.
Diffstat (limited to 'Tests/RunCMake/CrosscompilingEmulator/AddTest-check.cmake')
-rw-r--r-- | Tests/RunCMake/CrosscompilingEmulator/AddTest-check.cmake | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/RunCMake/CrosscompilingEmulator/AddTest-check.cmake b/Tests/RunCMake/CrosscompilingEmulator/AddTest-check.cmake new file mode 100644 index 0000000..0aae06c --- /dev/null +++ b/Tests/RunCMake/CrosscompilingEmulator/AddTest-check.cmake @@ -0,0 +1,12 @@ +set(testfile "${RunCMake_TEST_BINARY_DIR}/CTestTestfile.cmake") +if(EXISTS "${testfile}") + file(READ "${testfile}" testfile_contents) +else() + message(FATAL_ERROR "Could not find expected CTestTestfile.cmake.") +endif() +if(testfile_contents MATCHES "add_test[(]DoesNotUseEmulator ^(pseudo_emulator)+$") + message(SEND_ERROR "Used emulator when it should not be used.") +endif() +if(NOT testfile_contents MATCHES "add_test[(]UsesEmulator .+pseudo_emulator.+$") + message(SEND_ERROR "Did not use emulator when it should be used.") +endif() |