summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-08-20 19:39:35 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2012-08-20 19:39:35 (GMT)
commit9f555e805dd025f6428e5dff7f4a928c5dc5fbbb (patch)
tree97c3714aec7c6e68e8f792d32c3703b0d0a727a4 /Tests
parent14c8096ba88502409f076cf0b0e5fe471c18f11b (diff)
parent08c71acc8729aa51b389c0583bca351077e5e44e (diff)
downloadCMake-9f555e805dd025f6428e5dff7f4a928c5dc5fbbb.zip
CMake-9f555e805dd025f6428e5dff7f4a928c5dc5fbbb.tar.gz
CMake-9f555e805dd025f6428e5dff7f4a928c5dc5fbbb.tar.bz2
Merge topic 'list-command-argument-fixes'
08c71ac CMake.List test: explicitely test with lists containing only an empty string 52d9c38 list command: error on too many arguments
Diffstat (limited to 'Tests')
-rw-r--r--Tests/CMakeTests/ListTest.cmake.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/CMakeTests/ListTest.cmake.in b/Tests/CMakeTests/ListTest.cmake.in
index 07fc7c6..a167503 100644
--- a/Tests/CMakeTests/ListTest.cmake.in
+++ b/Tests/CMakeTests/ListTest.cmake.in
@@ -86,3 +86,14 @@ TEST("REVERSE result" "ken;brad;bill;andy")
set(result bill andy bill brad ken ken ken)
list(REMOVE_DUPLICATES result)
TEST("REMOVE_DUPLICATES result" "bill;andy;brad;ken")
+
+# these commands should just do nothing if the list is already empty
+set(result "")
+list(REMOVE_DUPLICATES result)
+TEST("REMOVE_DUPLICATES empty result" "")
+
+list(REVERSE result)
+TEST("REVERSE empty result" "")
+
+list(SORT result)
+TEST("SORT empty result" "")