summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/file/DOWNLOAD-hash-mismatch.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Fix `file://` URLs given to curlBrad King2017-02-101-1/+4
| | | | | | | 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.
* file(DOWNLOAD): Fill STATUS variable on hash mismatch (#15987)Brad King2016-02-251-0/+7
Although we fail with an error on a hash mismatch, it is not a fatal error so the script may continue processing. If the download itself had no error then report in the STATUS variable that the operation was not successful due to the hash mismatch. Suggested-by: Tobias Hieta <tobias@hieta.se>