You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
646 B

include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
unset (errors)
set(listvar a b c d)
list(LENGTH listvar reference)
set (output "$<LIST:LENGTH,a;b;c;d>")
if (NOT output EQUAL reference)
list (APPEND errors "returns bad value: ${output}")
endif()
set(listvar "")
list(LENGTH listvar reference)
set (output "$<LIST:LENGTH,>")
if (NOT output EQUAL reference)
list (APPEND errors "returns bad value: ${output}")
endif()
unset(listvar)
list(LENGTH listvar reference)
set (output "$<LIST:LENGTH,>")
if (NOT output EQUAL reference)
list (APPEND errors "returns bad value: ${output}")
endif()
check_errors("LIST:LENGTH..." ${errors})