lib1538.c (2337B)
1 /*************************************************************************** 2 * _ _ ____ _ 3 * Project ___| | | | _ \| | 4 * / __| | | | |_) | | 5 * | (__| |_| | _ <| |___ 6 * \___|\___/|_| \_\_____| 7 * 8 * Copyright (C) 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.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 * SPDX-License-Identifier: curl 22 * 23 ***************************************************************************/ 24 #include "first.h" 25 26 #include "memdebug.h" 27 28 static CURLcode test_lib1538(char *URL) 29 { 30 CURLcode res = CURLE_OK; 31 CURLcode easyret; 32 CURLMcode multiret; 33 CURLSHcode shareret; 34 CURLUcode urlret; 35 (void)URL; 36 37 /* NOLINTBEGIN(clang-analyzer-optin.core.EnumCastOutOfRange) */ 38 curl_easy_strerror((CURLcode)INT_MAX); 39 curl_multi_strerror((CURLMcode)INT_MAX); 40 curl_share_strerror((CURLSHcode)INT_MAX); 41 curl_url_strerror((CURLUcode)INT_MAX); 42 curl_easy_strerror((CURLcode)-INT_MAX); 43 curl_multi_strerror((CURLMcode)-INT_MAX); 44 curl_share_strerror((CURLSHcode)-INT_MAX); 45 curl_url_strerror((CURLUcode)-INT_MAX); 46 /* NOLINTEND(clang-analyzer-optin.core.EnumCastOutOfRange) */ 47 for(easyret = CURLE_OK; easyret <= CURL_LAST; easyret++) { 48 curl_mprintf("e%d: %s\n", (int)easyret, curl_easy_strerror(easyret)); 49 } 50 for(multiret = CURLM_CALL_MULTI_PERFORM; multiret <= CURLM_LAST; 51 multiret++) { 52 curl_mprintf("m%d: %s\n", (int)multiret, curl_multi_strerror(multiret)); 53 } 54 for(shareret = CURLSHE_OK; shareret <= CURLSHE_LAST; shareret++) { 55 curl_mprintf("s%d: %s\n", (int)shareret, curl_share_strerror(shareret)); 56 } 57 for(urlret = CURLUE_OK; urlret <= CURLUE_LAST; urlret++) { 58 curl_mprintf("u%d: %s\n", (int)urlret, curl_url_strerror(urlret)); 59 } 60 61 return res; 62 }