Tests: source CPack tests don't require build stage

This commit is contained in:
Domen Vrankar
2016-11-27 17:29:01 +01:00
parent d040d1647d
commit 48456535f3
2 changed files with 3 additions and 3 deletions

View File

@@ -100,6 +100,6 @@ function(run_cpack_test_subtests TEST_NAME SUBTEST_SUFFIXES types build PACKAGIN
endforeach()
endfunction()
function(run_cpack_source_test TEST_NAME types build)
run_cpack_test_common_("${TEST_NAME}" "${types}" "${build}" "" true "")
function(run_cpack_source_test TEST_NAME types)
run_cpack_test_common_("${TEST_NAME}" "${types}" false "" true "")
endfunction()

View File

@@ -20,5 +20,5 @@ run_cpack_test_subtests(PACKAGE_CHECKSUM "invalid;MD5;SHA1;SHA224;SHA256;SHA384;
run_cpack_test(PARTIALLY_RELOCATABLE_WARNING "RPM" false "COMPONENT")
run_cpack_test(PER_COMPONENT_FIELDS "RPM;DEB" false "COMPONENT")
run_cpack_test_subtests(SINGLE_DEBUGINFO "no_main_component;one_component;one_component_main;no_debuginfo;one_component_no_debuginfo;no_components;valid" "RPM" true "CUSTOM")
run_cpack_source_test(SOURCE_PACKAGE "RPM" true)
run_cpack_source_test(SOURCE_PACKAGE "RPM")
run_cpack_test(SUGGESTS "RPM" false "MONOLITHIC")