blob: d06547d786bc2ba586161d3cea5070eba368139c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
set(unitybuild_cxx "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/tgt.dir/Unity/unity_0_cxx.cxx")
if(NOT EXISTS "${unitybuild_cxx}")
set(RunCMake_TEST_FAILED "Generated unity source file ${unitybuild_cxx} does not exist.")
return()
endif()
string(JOIN ".*" EXPECTED_UNITY_FILE_CONTENT
[[#include "\.\./\.\./\.\./s1\.cxx"]]
[[#include "\.\./\.\./\.\./s2\.cxx"]]
[[#include "\.\./\.\./\.\./s3\.cxx"]]
)
file(STRINGS ${unitybuild_cxx} unitybuild_cxx_strings)
if(NOT unitybuild_cxx_strings MATCHES "${EXPECTED_UNITY_FILE_CONTENT}")
set(RunCMake_TEST_FAILED "Generated unity file ${unitybuild_cxx} doesn't contain relative paths")
return()
endif()
|