blob: dbf8f67504e680f87e7bb238e04596328a760f8e (
plain)
1
2
3
4
5
6
7
8
9
|
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()
|