You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
521 B
12 lines
521 B
if(NOT ${RunCMake_SUBTEST_SUFFIX} MATCHES "invalid")
|
|
string(TOLOWER ${RunCMake_SUBTEST_SUFFIX} CHECKSUM_EXTENSION)
|
|
file(GLOB PACKAGE RELATIVE ${bin_dir} "*.tar.gz")
|
|
file(STRINGS ${PACKAGE}.${CHECKSUM_EXTENSION} CHSUM_VALUE)
|
|
file(${RunCMake_SUBTEST_SUFFIX} ${PACKAGE} expected_value )
|
|
set(expected_value "${expected_value} ${PACKAGE}")
|
|
|
|
if(NOT expected_value STREQUAL CHSUM_VALUE)
|
|
message(FATAL_ERROR "Generated checksum is not valid! Expected [${expected_value}] Got [${CHSUM_VALUE}]")
|
|
endif()
|
|
endif()
|