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.
44 lines
1.4 KiB
44 lines
1.4 KiB
|
|
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
|
unset (errors)
|
|
|
|
cmake_path(SET path "/x/y/z/../../a/d")
|
|
if (NOT path STREQUAL "/x/y/z/../../a/d")
|
|
list (APPEND errors "'${path}' instead of '/x/y/z/../../a/d'")
|
|
endif()
|
|
cmake_path(SET path NORMALIZE "/x/y/z/../../a/d")
|
|
if (NOT path STREQUAL "/x/a/d")
|
|
list (APPEND errors "'${path}' instead of '/x/a/d'")
|
|
endif()
|
|
|
|
if (WIN32)
|
|
cmake_path(SET path "/x\\y/z\\..\\../a/d")
|
|
if (NOT path STREQUAL "/x/y/z/../../a/d")
|
|
list (APPEND errors "'${path}' instead of '/x/y/z/../../a/d'")
|
|
endif()
|
|
cmake_path(SET path NORMALIZE "/x\\y/z\\..\\../a/d")
|
|
if (NOT path STREQUAL "/x/a/d")
|
|
list (APPEND errors "'${path}' instead of '/x/a/d'")
|
|
endif()
|
|
|
|
cmake_path(SET path "//?/c:/x\\y/z\\..\\../a/d")
|
|
if (NOT path STREQUAL "c:/x/y/z/../../a/d")
|
|
list (APPEND errors "'${path}' instead of 'c:/x/y/z/../../a/d'")
|
|
endif()
|
|
cmake_path(SET path NORMALIZE "//?/c:/x\\y/z\\..\\../a/d")
|
|
if (NOT path STREQUAL "c:/x/a/d")
|
|
list (APPEND errors "'${path}' instead of 'c:/x/a/d'")
|
|
endif()
|
|
|
|
cmake_path(SET path "\\\\?\\UNC/host/x\\y/z\\..\\../a/d")
|
|
if (NOT path STREQUAL "//host/x/y/z/../../a/d")
|
|
list (APPEND errors "'${path}' instead of '//host/x/y/z/../../a/d'")
|
|
endif()
|
|
cmake_path(SET path NORMALIZE "\\\\?\\UNC\\host/x\\y/z\\..\\../a/d")
|
|
if (NOT path STREQUAL "//host/x/a/d")
|
|
list (APPEND errors "'${path}' instead of '//host/x/a/d'")
|
|
endif()
|
|
endif()
|
|
|
|
check_errors (SET ${errors})
|