Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
02cf404ace01ac4ea7a078dca75a817f95c3bdd3
/
.
/
Tests
/
RunCMake
/
GeneratorExpression
/
ResultValidator.cmake
blob: 722ae052702b351b6690c65618dffd7ff23a187e [
file
]
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
()