summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GenEx-PATH/ABSOLUTE_PATH.cmake.in
blob: cc5ff54d146358f0e4815b38ebacb048dcb209b7 (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
28
29
30
31
32
33
34

include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
unset (errors)

set (reference "../../a/d")
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f")
set(output "$<PATH:ABSOLUTE_PATH,../../a/d,/x/y/a/f>")
if (NOT output STREQUAL reference)
  list (APPEND errors "'${output}' instead of '${reference}'")
endif()

set (reference "../../a/d")
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f" NORMALIZE)
set(output "$<PATH:ABSOLUTE_PATH,NORMALIZE,../../a/d,/x/y/a/f>")
if (NOT output STREQUAL reference)
  list (APPEND errors "'${output}' instead of '${reference}'")
endif()

set (reference "/a/d/../e")
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f")
set(output "$<PATH:ABSOLUTE_PATH,/a/d/../e,/x/y/a/f>")
if (NOT output STREQUAL reference)
  list (APPEND errors "'${output}' instead of '${reference}'")
endif()

set (reference "/a/d/../e")
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f" NORMALIZE)
set(output "$<PATH:ABSOLUTE_PATH,NORMALIZE,/a/d/../e,/x/y/a/f>")
if (NOT output STREQUAL reference)
  list (APPEND errors "'${output}' instead of '${reference}'")
endif()


check_errors("PATH:ABSOLUTE_PATH" ${errors})