aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib501.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libtest/lib501.c')
-rw-r--r--tests/libtest/lib501.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/tests/libtest/lib501.c b/tests/libtest/lib501.c
index 4199598fa..2ed1a9ae4 100644
--- a/tests/libtest/lib501.c
+++ b/tests/libtest/lib501.c
@@ -1,13 +1,14 @@
-#include "first.c"
+#include "test.h"
-fprintf(stderr, "URL: %s\n", argv[1]);
+CURLcode test(char *URL)
+{
+ CURLcode res;
+ CURL *curl = curl_easy_init();
-CURL *curl;
-CURLcode res;
-curl = curl_easy_init();
-curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
-res = curl_easy_perform(curl);
-curl_easy_cleanup(curl);
+ (void)URL; /* we don't use this */
+ curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
+ res = curl_easy_perform(curl);
+ curl_easy_cleanup(curl);
+ return res;
+}
-return res;
-#include "last.c"