summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ctest_build/ParallelLevel-check.cmake
blob: f45d2a29f54ccfb100515d2a208f19ee6cac2474 (plain)
1
2
3
4
5
6
7
8
9
10
11
file(GLOB build_xml_file "${RunCMake_TEST_BINARY_DIR}/Testing/*/Build.xml")
if(build_xml_file)
  file(STRINGS "${build_xml_file}" build_cmd LIMIT_COUNT 1 REGEX "<BuildCommand>")
  if(NOT build_cmd MATCHES [[ --parallel "1"]])
    set(RunCMake_TEST_FAILED
      "Build.xml does not have expected build command with --parallel flag"
      )
  endif()
else()
  set(RunCMake_TEST_FAILED "Build.xml not found")
endif()