summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CPack/tests/DEPENDENCIES/ExpectedFiles.cmake
blob: 8459dd31e4b5ed59a8c5ee727f1efaf3941ed04d (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
set(whitespaces_ "[\t\n\r ]*")

set(EXPECTED_FILES_COUNT "5")

if(GENERATOR_TYPE STREQUAL "DEB")
  set(EXPECTED_FILE_1 "dependencies-0.1.1-*-applications.deb")
  set(EXPECTED_FILE_CONTENT_1 "^.*/usr/foo${whitespaces_}.*/usr/foo/test_prog$")
  set(EXPECTED_FILE_2 "dependencies-0.1.1-*-applications_auto.deb")
  set(EXPECTED_FILE_CONTENT_2 "^.*/usr/foo_auto${whitespaces_}.*/usr/foo_auto/test_prog$")
  set(EXPECTED_FILE_3 "dependencies-0.1.1-*-headers.deb")
  set(EXPECTED_FILE_CONTENT_3 "^.*/usr/bar${whitespaces_}.*/usr/bar/CMakeLists.txt$")
  set(EXPECTED_FILE_4 "dependencies-0.1.1-*-libs.deb")
  # dynamic lib extension is .so on Linux and .dylib on Mac so we will use a wildcard .* for it
  set(EXPECTED_FILE_CONTENT_4 "^.*/usr/bas${whitespaces_}.*/usr/bas/libtest_lib\\..*$")
  set(EXPECTED_FILE_5 "dependencies-0.1.1-*-libs_auto.deb")
  set(EXPECTED_FILE_CONTENT_5 "^.*/usr/bas_auto${whitespaces_}.*/usr/bas_auto/libtest_lib\\..*$")
elseif(GENERATOR_TYPE STREQUAL "RPM")
  set(EXPECTED_FILE_1 "dependencies*-applications.rpm")
  set(EXPECTED_FILE_CONTENT_1 "^/usr/foo${whitespaces_}/usr/foo/test_prog$")
  set(EXPECTED_FILE_2 "dependencies*-applications_auto.rpm")
  set(EXPECTED_FILE_CONTENT_2 "^/usr/foo_auto${whitespaces_}/usr/foo_auto/test_prog$")
  set(EXPECTED_FILE_3 "dependencies*-headers.rpm")
  set(EXPECTED_FILE_CONTENT_3 "^/usr/bar${whitespaces_}/usr/bar/CMakeLists.txt$")
  set(EXPECTED_FILE_4 "dependencies*-libs.rpm")
  set(EXPECTED_FILE_CONTENT_4 "^/usr/bas${whitespaces_}/usr/bas/libtest_lib.so$")
  set(EXPECTED_FILE_5 "dependencies*-libs_auto.rpm")
  set(EXPECTED_FILE_CONTENT_5 "^/usr/bas_auto${whitespaces_}/usr/bas_auto/libtest_lib.so$")
endif()