summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeTests/FileDownloadTest.cmake.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-02-07 19:25:49 (GMT)
committerBrad King <brad.king@kitware.com>2017-02-10 18:10:07 (GMT)
commit14c771530a12feb4f92fb0ab466b40ff68997b05 (patch)
treef417556da0669cd637283c5fc6618330a0b2cb97 /Tests/CMakeTests/FileDownloadTest.cmake.in
parent73ae67006c952b8804f2566e868bc3acf7539857 (diff)
downloadCMake-14c771530a12feb4f92fb0ab466b40ff68997b05.zip
CMake-14c771530a12feb4f92fb0ab466b40ff68997b05.tar.gz
CMake-14c771530a12feb4f92fb0ab466b40ff68997b05.tar.bz2
Tests: Fix `file://` URLs given to curl
Since upstream curl commit curl-7_52_0~131 (URL-parser: for file://[host]/ URLs, the [host] must be localhost, 2016-11-11) we can no longer use URLs of the form `file://c:/...` on Windows. These worked only accidentally before. Use `file:///c:/...` instead.
Diffstat (limited to 'Tests/CMakeTests/FileDownloadTest.cmake.in')
-rw-r--r--Tests/CMakeTests/FileDownloadTest.cmake.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/CMakeTests/FileDownloadTest.cmake.in b/Tests/CMakeTests/FileDownloadTest.cmake.in
index 83ade2b..f6d9ad9 100644
--- a/Tests/CMakeTests/FileDownloadTest.cmake.in
+++ b/Tests/CMakeTests/FileDownloadTest.cmake.in
@@ -1,4 +1,7 @@
-set(url "file://@CMAKE_CURRENT_SOURCE_DIR@/FileDownloadInput.png")
+if(NOT "@CMAKE_CURRENT_SOURCE_DIR@" MATCHES "^/")
+ set(slash /)
+endif()
+set(url "file://${slash}@CMAKE_CURRENT_SOURCE_DIR@/FileDownloadInput.png")
set(dir "@CMAKE_CURRENT_BINARY_DIR@/downloads")
message(STATUS "FileDownload:1")