mirror of
https://github.com/curl/curl.git
synced 2026-04-15 01:05:56 +08:00
Make test bundles the default. Drop non-bundle build mode.
Also do all the optimizations and tidy-ups this allows, simpler builds,
less bundle exceptions, streamlined build mechanics.
Also rework the init/deinit macro magic for unit tests. The new method
allows using unique init/deinit function names, and calling them with
arguments. This is in turn makes it possible to reduce the use of global
variables.
Note this drop existing build options `-DCURL_TEST_BUNDLES=` from cmake
and `--enable-test-bundles` / `--disable-test-bundles` from autotools.
Also:
- rename test entry functions to have unique names: `test_<testname>`
This removes the last exception that was handled in the generator.
- fix `make dist` to not miss test sources with test bundles enabled.
- sync and merge `tests/mk-bundle.pl` into `scripts/mk-unity.pl`.
- mk-unity.pl: add `--embed` option and use it when `CURL_CLANG_TIDY=ON`
to ensure that `clang-tidy` does not miss external test C sources.
(because `clang-tidy` ignores code that's #included.)
- tests/unit: drop no-op setup/stop functions.
- tests: reduce symbol scopes, global macros, other fixes and tidy-ups.
- tool1621: fix to run, also fix it to pass.
- sockfilt: fix Windows compiler warning in certain unity include order,
by explicitly including `warnless.h`.
Follow-up to 6897aeb105 #17468
Closes #17590
120 lines
3.1 KiB
C
120 lines
3.1 KiB
C
#ifndef HEADER_CURL_TOOL_SETUP_H
|
|
#define HEADER_CURL_TOOL_SETUP_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* 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
|
|
*
|
|
***************************************************************************/
|
|
|
|
#ifndef CURL_NO_OLDIES
|
|
#define CURL_NO_OLDIES
|
|
#endif
|
|
|
|
/*
|
|
* curl_setup.h may define preprocessor macros such as _FILE_OFFSET_BITS and
|
|
* _LARGE_FILES in order to support files larger than 2 GB. On platforms
|
|
* where this happens it is mandatory that these macros are defined before
|
|
* any system header file is included, otherwise file handling function
|
|
* prototypes will be misdeclared and curl tool may not build properly;
|
|
* therefore we must include curl_setup.h before curl.h when building curl.
|
|
*/
|
|
|
|
#include "curl_setup.h" /* from the lib directory */
|
|
|
|
extern FILE *tool_stderr;
|
|
|
|
/*
|
|
* curl tool certainly uses libcurl's external interface.
|
|
*/
|
|
|
|
#include <curl/curl.h> /* external interface */
|
|
|
|
#include "timeval.h"
|
|
|
|
/*
|
|
* Platform specific stuff.
|
|
*/
|
|
|
|
#ifdef macintosh
|
|
# define main(x,y) curl_main(x,y)
|
|
#endif
|
|
|
|
#ifndef CURL_OS
|
|
# define CURL_OS "unknown"
|
|
#endif
|
|
|
|
#ifndef UNPRINTABLE_CHAR
|
|
/* define what to use for unprintable characters */
|
|
# define UNPRINTABLE_CHAR '.'
|
|
#endif
|
|
|
|
#ifndef HAVE_STRDUP
|
|
# include "tool_strdup.h"
|
|
#endif
|
|
|
|
#ifndef tool_nop_stmt
|
|
#define tool_nop_stmt do { } while(0)
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
# define CURL_STRICMP(p1, p2) _stricmp(p1, p2)
|
|
#elif defined(HAVE_STRCASECMP)
|
|
# ifdef HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
# endif
|
|
# define CURL_STRICMP(p1, p2) strcasecmp(p1, p2)
|
|
#elif defined(HAVE_STRCMPI)
|
|
# define CURL_STRICMP(p1, p2) strcmpi(p1, p2)
|
|
#elif defined(HAVE_STRICMP)
|
|
# define CURL_STRICMP(p1, p2) stricmp(p1, p2)
|
|
#else
|
|
# define CURL_STRICMP(p1, p2) strcmp(p1, p2)
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
/* set in init_terminal() */
|
|
extern bool tool_term_has_bold;
|
|
|
|
#ifdef UNDER_CE
|
|
# undef isatty
|
|
# define isatty(fd) 0 /* fd is void*, expects int */
|
|
# undef _get_osfhandle
|
|
# define _get_osfhandle(fd) (fd)
|
|
# undef _getch
|
|
# define _getch() 0
|
|
#endif
|
|
|
|
#ifndef HAVE_FTRUNCATE
|
|
|
|
int tool_ftruncate64(int fd, curl_off_t where);
|
|
|
|
#undef ftruncate
|
|
#define ftruncate(fd,where) tool_ftruncate64(fd,where)
|
|
|
|
#define HAVE_FTRUNCATE 1
|
|
#define USE_TOOL_FTRUNCATE 1
|
|
|
|
#endif /* ! HAVE_FTRUNCATE */
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
#endif /* HEADER_CURL_TOOL_SETUP_H */
|