summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/file/CREATE_LINK-noexist.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/file/CREATE_LINK-noexist.cmake')
-rw-r--r--Tests/RunCMake/file/CREATE_LINK-noexist.cmake5
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()