blob: dfcf2b2a1551f42fd368e96951ed417a1f2c8c84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
unset (errors)
set (path1 "a///b/c")
cmake_path(HASH path1 hash1)
set (path2 "a/b////c")
cmake_path(HASH path2 hash2)
if (NOT hash1 STREQUAL hash2)
list (APPEND errors "'hash values not equal for '${path1}' and '${path2}'")
endif()
set (path1 "a///b/c/../d")
cmake_path(HASH path1 hash1)
set (path2 "a/b////d")
cmake_path(HASH path2 hash2)
if (hash1 STREQUAL hash2)
list (APPEND errors "'hash values equal for '${path1}' and '${path2}'")
endif()
cmake_path(HASH path1 hash1 NORMALIZE)
cmake_path(HASH path2 NORMALIZE hash2)
if (NOT hash1 STREQUAL hash2)
list (APPEND errors "'hash values not equal for '${path1}' and '${path2}'")
endif()
check_errors (HASH ${errors})
|