123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
- * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * This software is licensed as described in the file COPYING, which
- * you should have received as part of this distribution. The terms
- * are also available at https://curl.se/docs/copyright.html.
- *
- * You may opt to use, copy, modify, merge, publish, distribute and/or sell
- * copies of the Software, and permit persons to whom the Software is
- * furnished to do so, under the terms of the COPYING file.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- * SPDX-License-Identifier: curl
- *
- ***************************************************************************/
- #include "test.h"
- #include "testutil.h"
- #include "timediff.h"
- #include "warnless.h"
- #include "memdebug.h"
- int test(char *URL)
- {
- CURLcode res = CURLE_OK;
- CURL *ch = NULL;
- global_init(CURL_GLOBAL_ALL);
- easy_init(ch);
- easy_setopt(ch, CURLOPT_URL, URL);
- easy_setopt(ch, CURLOPT_COOKIEFILE, libtest_arg2);
- res = curl_easy_perform(ch);
- if(res)
- goto test_cleanup;
- curl_easy_reset(ch);
- easy_setopt(ch, CURLOPT_URL, URL);
- easy_setopt(ch, CURLOPT_COOKIEFILE, libtest_arg2);
- easy_setopt(ch, CURLOPT_COOKIEJAR, libtest_arg3);
- res = curl_easy_perform(ch);
- test_cleanup:
- curl_easy_cleanup(ch);
- curl_global_cleanup();
- return (int)res;
- }
|