mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-13 01:29:02 -05:00
CMake.List test: explicitely test with lists containing only an empty string
This commit is contained 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" "")
|
||||
|
||||
Reference in New Issue
Block a user