1/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
9 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at https://curl.haxx.se/docs/copyright.html.
13 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22#include "test.h"
23
24#include "memdebug.h"
25
26int test(char *URL)
27{
28 int res = 0;
29 CURLcode easyret;
30 CURLMcode multiret;
31 CURLSHcode shareret;
32 (void)URL;
33
34 curl_easy_strerror(INT_MAX);
35 curl_multi_strerror(INT_MAX);
36 curl_share_strerror(INT_MAX);
37 curl_easy_strerror(-INT_MAX);
38 curl_multi_strerror(-INT_MAX);
39 curl_share_strerror(-INT_MAX);
40 for(easyret = CURLE_OK; easyret <= CURL_LAST; easyret++) {
41 printf("e%d: %s\n", (int)easyret, curl_easy_strerror(easyret));
42 }
43 for(multiret = CURLM_CALL_MULTI_PERFORM; multiret <= CURLM_LAST;
44 multiret++) {
45 printf("m%d: %s\n", (int)multiret, curl_multi_strerror(multiret));
46 }
47 for(shareret = CURLSHE_OK; shareret <= CURLSHE_LAST; shareret++) {
48 printf("s%d: %s\n", (int)shareret, curl_share_strerror(shareret));
49 }
50
51 return (int)res;
52}
53