ResultValidator.cmake 228 B

123456
  1. function (CHECK_VALUE test_msg value expected)
  2. if (NOT value STREQUAL expected)
  3. string (APPEND RunCMake_TEST_FAILED "${test_msg}: actual result:\n [[${value}]]\nbut expected:\n [[${expected}]]\n")
  4. endif()
  5. endfunction()