summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GeneratorExpression/ResultValidator.cmake
blob: 722ae052702b351b6690c65618dffd7ff23a187e (plain)
1
2
3
4
5
6

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()