diff options
author | Eric NOULARD <eric.noulard@gmail.com> | 2011-01-30 12:11:25 (GMT) |
---|---|---|
committer | Eric NOULARD <eric.noulard@gmail.com> | 2011-01-30 12:11:25 (GMT) |
commit | 92ced20fa13cd2b4ed45a80d265a590d2291f8ee (patch) | |
tree | 78ab255542bb412764e131b59aa0973eaf9042cf /Tests/CPackComponentsForAll/RunCPackVerifyResult.cmake | |
parent | 04d4afbfa863bc43ab4d597b0b1a64f9a86c9ba2 (diff) | |
download | CMake-92ced20fa13cd2b4ed45a80d265a590d2291f8ee.zip CMake-92ced20fa13cd2b4ed45a80d265a590d2291f8ee.tar.gz CMake-92ced20fa13cd2b4ed45a80d265a590d2291f8ee.tar.bz2 |
CPack Tests the different ways of packaging components
Diffstat (limited to 'Tests/CPackComponentsForAll/RunCPackVerifyResult.cmake')
-rw-r--r-- | Tests/CPackComponentsForAll/RunCPackVerifyResult.cmake | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/CPackComponentsForAll/RunCPackVerifyResult.cmake b/Tests/CPackComponentsForAll/RunCPackVerifyResult.cmake index 11f72ec..d5137bd 100644 --- a/Tests/CPackComponentsForAll/RunCPackVerifyResult.cmake +++ b/Tests/CPackComponentsForAll/RunCPackVerifyResult.cmake @@ -49,6 +49,18 @@ if(CPackGen MATCHES "ZIP") if (${CPackComponentWay} STREQUAL "default") set(expected_count 1) endif(${CPackComponentWay} STREQUAL "default") + if (${CPackComponentWay} STREQUAL "OnePackPerGroup") + set(expected_count 2) + endif (${CPackComponentWay} STREQUAL "OnePackPerGroup") + if (${CPackComponentWay} STREQUAL "IgnoreGroup") + set(expected_count 4) + endif (${CPackComponentWay} STREQUAL "IgnoreGroup") + if (${CPackComponentWay} STREQUAL "AllInOne") + set(expected_count 1) + endif (${CPackComponentWay} STREQUAL "AllInOne") + if (${CPackComponentWay} STREQUAL "AllGroupsInOne") + set(expected_count 1) + endif (${CPackComponentWay} STREQUAL "AllGroupsInOne") endif(CPackGen MATCHES "ZIP") # Now verify if the number of expected file is OK |