summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-12 16:01:09 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-12 16:01:09 (GMT)
commit6f0266407bf1a3a0df853e800b3ac0c0f2f89542 (patch)
treeee7bcbc83d68478e6a56aec273b37ca6875f2421 /Source
parentb229c44dc3e55c3ea740b6639e9688112ea078e8 (diff)
downloadCMake-6f0266407bf1a3a0df853e800b3ac0c0f2f89542.zip
CMake-6f0266407bf1a3a0df853e800b3ac0c0f2f89542.tar.gz
CMake-6f0266407bf1a3a0df853e800b3ac0c0f2f89542.tar.bz2
Test on simpler pages
Diffstat (limited to 'Source')
-rw-r--r--Source/CTest/Curl/Testing/curltest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CTest/Curl/Testing/curltest.c b/Source/CTest/Curl/Testing/curltest.c
index 1da42d3..8dbe394 100644
--- a/Source/CTest/Curl/Testing/curltest.c
+++ b/Source/CTest/Curl/Testing/curltest.c
@@ -43,22 +43,22 @@ int GetWebFile(void)
curl_easy_setopt(curl, CURLOPT_HEADER, 1);
/* get the first document */
- curl_easy_setopt(curl, CURLOPT_URL, "http://www.cmake.org/HTML/Sponsors.html");
+ curl_easy_setopt(curl, CURLOPT_URL, "http://www.cmake.org/page1.html");
res = curl_easy_perform(curl);
if ( res != 0 )
{
- printf("Error fetching: http://www.cmake.org/HTML/Sponsors.html\n");
+ printf("Error fetching: http://www.cmake.org/page1.html\n");
retVal = 1;
}
/* get another document from the same server using the same
connection */
- curl_easy_setopt(curl, CURLOPT_URL, "http://www.cmake.org/HTML/Index.html");
+ curl_easy_setopt(curl, CURLOPT_URL, "http://www.cmake.org/page2.html");
res = curl_easy_perform(curl);
if ( res != 0 )
{
- printf("Error fetching: http://www.cmake.org/HTML/Index.html\n");
+ printf("Error fetching: http://www.cmake.org/page2.html\n");
retVal = 1;
}