diff options
author | Tushar Maheshwari <tushar27192@gmail.com> | 2019-01-11 13:07:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-16 15:03:35 (GMT) |
commit | 9a3d85cfc501fe3c1655e4a6ae9fd08fd9a1fbb7 (patch) | |
tree | d1317dec8dfa28f4f331086b2e220bcacb204be8 /Tests/RunCMake/file/CREATE_LINK-noexist.cmake | |
parent | e68ea269d72773e53db0c6c6848f6f69f3fd7329 (diff) | |
download | CMake-9a3d85cfc501fe3c1655e4a6ae9fd08fd9a1fbb7.zip CMake-9a3d85cfc501fe3c1655e4a6ae9fd08fd9a1fbb7.tar.gz CMake-9a3d85cfc501fe3c1655e4a6ae9fd08fd9a1fbb7.tar.bz2 |
Tests: Skip symlink tests on Windows
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() |