summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/CTest/NotOn-check.cmake
blob: b68218af05656d07f9bc7c14356f41ec6f6a7b55 (plain)
1
2
3
4
5
6
7
8
set(f "${RunCMake_TEST_BINARY_DIR}/CTestTestfile.cmake")
if(NOT EXISTS "${f}")
  set(RunCMake_TEST_FAILED "File does not exist:\n  ${f}")
endif()
file(READ ${f} content)
if(NOT "${content}" MATCHES "^# Created manually")
  set(RunCMake_TEST_FAILED "File:\n  ${f}\nhas unexpected content:\n  ${content}")
endif()