blob: bee5ac7dfb444ad299c90b4b2f3ddb6b4313b9a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
file(GLOB test_xml "${RunCMake_TEST_BINARY_DIR}/Testing/*/Test.xml")
if(NOT test_xml)
set(RunCMake_TEST_FAILED "Test.xml not found.")
return()
endif()
file(READ "${test_xml}" test_xml_content)
if(NOT test_xml_content MATCHES "SIGUSR1")
set(RunCMake_TEST_FAILED "Test output does not mention SIGUSR1.")
return()
endif()
|