summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-10-04 22:57:59 (GMT)
committerBrad King <brad.king@kitware.com>2006-10-04 22:57:59 (GMT)
commit9f52b7d2dace25939034dae5eea758212b58b121 (patch)
tree41014b11b94c720ce6a0b72160fbdeaf9f9f9adb /Tests
parent406f3554c787f6926e9775f953e8f590db78803e (diff)
downloadCMake-9f52b7d2dace25939034dae5eea758212b58b121.zip
CMake-9f52b7d2dace25939034dae5eea758212b58b121.tar.gz
CMake-9f52b7d2dace25939034dae5eea758212b58b121.tar.bz2
ENH: Adding test of special characters in custom command and custom target comments.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/CustomCommand/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/CustomCommand/CMakeLists.txt b/Tests/CustomCommand/CMakeLists.txt
index bf00b65..7685031 100644
--- a/Tests/CustomCommand/CMakeLists.txt
+++ b/Tests/CustomCommand/CMakeLists.txt
@@ -229,7 +229,7 @@ ADD_CUSTOM_COMMAND(
COMMAND ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/check_command_line
${CHECK_ARGS}
VERBATIM
- COMMENT "Checking custom command line escapes"
+ COMMENT "Checking custom command line escapes (single'quote)"
)
SET_SOURCE_FILES_PROPERTIES(${CMAKE_CURRENT_BINARY_DIR}/command_line_check
PROPERTIES SYMBOLIC 1)
@@ -239,5 +239,6 @@ ADD_CUSTOM_TARGET(do_check_command_line ALL
COMMAND ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/check_command_line
${CHECK_ARGS}
VERBATIM
+ COMMENT "Checking custom target command line escapes ($dollar-signs$)"
)
ADD_DEPENDENCIES(do_check_command_line check_command_line)