/***************************************************************************1* _ _ ____ _2* Project ___| | | | _ \| |3* / __| | | | |_) | |4* | (__| |_| | _ <| |___5* \___|\___/|_| \_\_____|6*7* Copyright (C) Linus Nielsen Feltzing <[email protected]>8*9* This software is licensed as described in the file COPYING, which10* you should have received as part of this distribution. The terms11* are also available at https://curl.se/docs/copyright.html.12*13* You may opt to use, copy, modify, merge, publish, distribute and/or sell14* copies of the Software, and permit persons to whom the Software is15* furnished to do so, under the terms of the COPYING file.16*17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY18* KIND, either express or implied.19*20* SPDX-License-Identifier: curl21*22***************************************************************************/23#include "test.h"2425#include "testutil.h"26#include "warnless.h"27#include "memdebug.h"2829CURLcode test(char *URL)30{31CURLcode res = CURLE_OK;32CURLM *m = NULL;3334(void)URL;3536global_init(CURL_GLOBAL_ALL);3738multi_init(m);3940test_cleanup:4142/* proper cleanup sequence - type PB */4344curl_multi_cleanup(m);45curl_global_cleanup();4647curl_mprintf("We are done\n");4849return res;50}515253