blob: 9d2a059a4902d1b8e41688b8735e91b9843950d3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function (find_xml_file name)
file(GLOB test_xml_file "${RunCMake_TEST_BINARY_DIR}/Testing/*/${name}.xml")
if (NOT test_xml_file)
message(FATAL_ERROR
"${name}.xml not created.")
endif ()
endfunction ()
find_xml_file(DynamicAnalysis)
find_xml_file(DynamicAnalysis-Test)
|