diff options
Diffstat (limited to 'Tests/RunCMake/file/CREATE_LINK-noexist.cmake')
-rw-r--r-- | Tests/RunCMake/file/CREATE_LINK-noexist.cmake | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Tests/RunCMake/file/CREATE_LINK-noexist.cmake b/Tests/RunCMake/file/CREATE_LINK-noexist.cmake index 1c4dc12..5ee2580 100644 --- a/Tests/RunCMake/file/CREATE_LINK-noexist.cmake +++ b/Tests/RunCMake/file/CREATE_LINK-noexist.cmake @@ -2,8 +2,3 @@ file(CREATE_LINK does_not_exist.txt TestLink.txt RESULT result) if(NOT result STREQUAL "0") message("Hard link error: ${result}") endif() - -file(CREATE_LINK does_not_exist.txt TestSymLink.txt RESULT sym_result SYMBOLIC) -if(NOT sym_result STREQUAL "0") - message("Symlink fail: ${sym_result}") -endif() |