summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ctest_update/UpdateChangeId-check.cmake
blob: 382fbec6a70d42dfbbb091b2cd018137702cf159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
file(GLOB update_xml_file "${RunCMake_TEST_BINARY_DIR}/Testing/*/Update.xml")
if(update_xml_file)
  file(READ "${update_xml_file}" update_xml LIMIT 4096)
  if(NOT update_xml MATCHES [[ChangeId><>1]])
    string(REPLACE "\n" "\n  " update_xml "  ${update_xml}")
    set(RunCMake_TEST_FAILED
      "Update.xml does not have expected ChangeId:\n${update_xml}"
      )
  endif()
else()
  set(RunCMake_TEST_FAILED "Update.xml not found")
endif()