Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
RunCMake
/
GeneratorExpression
/
ResultValidator.cmake
blob: 722ae052702b351b6690c65618dffd7ff23a187e [
file
] [
log
] [
blame
]
function
(
CHECK_VALUE test_msg value expected
)
if
(
NOT value STREQUAL expected
)
string
(
APPEND
RunCMake_TEST_FAILED
"${test_msg}: actual result:\n [[${value}]]\nbut expected:\n [[${expected}]]\n"
)
endif
()
endfunction
()