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.
10 lines
271 B
10 lines
271 B
11 years ago
|
file(READ ${stamp} content)
|
||
|
if(NOT content STREQUAL 1)
|
||
|
set(RunCMake_TEST_FAILED "Expected stamp '1' but got: '${content}'")
|
||
|
endif()
|
||
|
|
||
|
file(READ ${output} content)
|
||
|
if(NOT content STREQUAL 1)
|
||
|
set(RunCMake_TEST_FAILED "Expected output '1' but got: '${content}'")
|
||
|
endif()
|