mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
9 lines
354 B
CMake
9 lines
354 B
CMake
if(EXISTS ${RunCMake_TEST_BINARY_DIR}/ExpandSourceDir/test.tmp)
|
|
set(RunCMake_TEST_FAILED "test.tmp was not deleted")
|
|
endif()
|
|
file(READ ${RunCMake_TEST_BINARY_DIR}/ExpandSourceDir/llvmrc.result LLVMRC_RESULT)
|
|
if(NOT "${LLVMRC_RESULT}" STREQUAL "This is a test\n")
|
|
set(RunCMake_TEST_FAILED "llvmrc.result was not created")
|
|
endif()
|
|
unset(LLVMRC_RESULT)
|