diff options
author | Craig Scott <craig.scott@crascit.com> | 2018-03-04 10:30:35 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2018-03-04 11:27:59 (GMT) |
commit | e654622aee22655c418a9c663fad79243ca0c819 (patch) | |
tree | 059f37f02283b368388e50f360ffbace9e8f0a49 /Tests/RunCMake/WorkingDirectory/buildAndTestNoBuildDir.cmake | |
parent | a865f0beb2e9f8d92e021855c773ab90eaf24581 (diff) | |
download | CMake-e654622aee22655c418a9c663fad79243ca0c819.zip CMake-e654622aee22655c418a9c663fad79243ca0c819.tar.gz CMake-e654622aee22655c418a9c663fad79243ca0c819.tar.bz2 |
Tests: Add --build-and-test test case
Checks that giving an invalid build directory to
ctest --build-and-test will fail.
Diffstat (limited to 'Tests/RunCMake/WorkingDirectory/buildAndTestNoBuildDir.cmake')
-rw-r--r-- | Tests/RunCMake/WorkingDirectory/buildAndTestNoBuildDir.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/RunCMake/WorkingDirectory/buildAndTestNoBuildDir.cmake b/Tests/RunCMake/WorkingDirectory/buildAndTestNoBuildDir.cmake new file mode 100644 index 0000000..ad795c4 --- /dev/null +++ b/Tests/RunCMake/WorkingDirectory/buildAndTestNoBuildDir.cmake @@ -0,0 +1,7 @@ +# We want a single test that always passes. We should never actually get to +# configure with this file, so we use a successful configure-build-test +# sequence to denote failure of the test case. +include(CTest) +add_test(NAME willPass + COMMAND ${CMAKE_COMMAND} -E touch someFile.txt +) |