mirror of
https://github.com/curl/curl.git
synced 2026-04-16 01:25:14 +08:00
Using a mixture of techniques to avoid symbols collisions: - reduce scope. - add `t*_` / `T*_` prefix. - move shared functions to `testutil.c`. (`suburl()`, `rlim2str()`) - clone re-used lib*.c sources. (lib587, lib645) - include shared symbols just once in re-used `lib*.c` sources. (using `LIB*_C` guards.) - drop re-used `lib*.c` sources where they were identical or unused. - make macros global. - #undef macros before use. What remain is the entry functions `test`, and `unit_setup`, `unit_stop` in unit tests. Also: - fix formatting and other minor things along the way. - add `const` where possible. - sync some symbol names between tests. - drop `mk-bundle-hints.sh` that's no longer necessary. Closes #17468
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* 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 <stdio.h>
|
|
#include <string.h>
|
|
#include "first.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
main_func_t main_func;
|
|
char *main_name;
|
|
|
|
if(argc < 2) {
|
|
fprintf(stderr, "Pass servername as first argument\n");
|
|
return 1;
|
|
}
|
|
|
|
main_name = argv[1];
|
|
main_func = NULL;
|
|
{
|
|
size_t tmp;
|
|
for(tmp = 0; tmp < CURL_ARRAYSIZE(s_mains); ++tmp) {
|
|
if(strcmp(main_name, s_mains[tmp].name) == 0) {
|
|
main_func = s_mains[tmp].ptr;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!main_func) {
|
|
fprintf(stderr, "Test '%s' not found.\n", main_name);
|
|
return 99;
|
|
}
|
|
|
|
--argc;
|
|
++argv;
|
|
|
|
return main_func(argc, argv);
|
|
}
|