From 6f0266407bf1a3a0df853e800b3ac0c0f2f89542 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Sun, 12 Jan 2003 11:01:09 -0500 Subject: [PATCH] Test on simpler pages --- Source/CTest/Curl/Testing/curltest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/CTest/Curl/Testing/curltest.c b/Source/CTest/Curl/Testing/curltest.c index 1da42d362..8dbe39409 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; }