mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:53:33 +03:00
cmake: allow building tests in unity mode
Makes building tests noticeably faster. Apply changes/fixes/workarounds to make Unity work: - rename test variables to avoid collisions or shadowing each other when combined into single units. - add workaround to avoid applying `lib/memdebug.h` overrides to system headers declaring/defining `getaddrinfo()`/`freeaddrinfo()` for `tests/server/resolve.c`. This replaces a previous workaround that worked for that specific source. - rename test macro `CTRL` clashing with Cygwin `sys/ioctl.h`. - add include guard to `test.h`. Also: - exclude `tests/http/clients` which are all single-source. (like `docs/examples`.) Build time improvements for tests: - AppVeyor CI: - MSVC 2008, 2010: 1 minute faster (4m8s -> 2m56s, 3m19s -> 2m24s) - MSVC 2022 arm64: 3.5 minutes faster (10m18s -> 6m48s) before: https://ci.appveyor.com/project/curlorg/curl/builds/50522785 after: https://ci.appveyor.com/project/curlorg/curl/builds/50522942 - GHA: - Cygwin: 1.5 minutes faster (3m13s -> 1m43s) before: https://github.com/curl/curl/actions/runs/10681535327/job/29605384398 after: https://github.com/curl/curl/actions/runs/10680818726/job/29603130637 - Windows: before: https://github.com/curl/curl/actions/runs/10680818713 after: https://github.com/curl/curl/actions/runs/10683850187 - MSYS2, mingw-w64: 1 minute faster - MSVC: 30 seconds faster (3m17s -> 2m48s) - macOS: double speed (39s -> 18s) before: https://github.com/curl/curl/actions/runs/10680818753/job/29603133447 after: https://github.com/curl/curl/actions/runs/10683850174/job/29612914515 - Linux: almost double speed (30/31s -> 18s) before: https://github.com/curl/curl/actions/runs/10681535311/job/29605387156 after: https://github.com/curl/curl/actions/runs/10680818721/job/29603133976 - non-native: no obvious effect. before: https://github.com/curl/curl/actions/runs/10680818722 after: https://github.com/curl/curl/actions/runs/10683850187 - Old Linux: Unity mode not supported by old CMake, no effect. Closes #14765
This commit is contained in:
parent
aa1a153910
commit
3efba94f77
13 changed files with 77 additions and 61 deletions
|
|
@ -26,6 +26,8 @@
|
|||
transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
|
||||
include("${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
|
||||
|
||||
set_source_files_properties("../../lib/memdebug.c" "../../lib/curl_multibyte.c" PROPERTIES SKIP_UNITY_BUILD_INCLUSION ON)
|
||||
|
||||
foreach(_target IN LISTS noinst_PROGRAMS)
|
||||
set(_target_name "${_target}")
|
||||
add_executable(${_target_name} EXCLUDE_FROM_ALL ${${_target}_SOURCES})
|
||||
|
|
@ -45,6 +47,10 @@ foreach(_target IN LISTS noinst_PROGRAMS)
|
|||
if(WIN32)
|
||||
set_property(TARGET ${_target_name} APPEND PROPERTY COMPILE_DEFINITIONS "CURL_STATICLIB")
|
||||
endif()
|
||||
# getaddrinfo/freeaddrinfo overrides break UNITY build by overriding them
|
||||
# before including system headers. Server code doesn't need these overrides,
|
||||
# so it's safe to disable them globally.
|
||||
set_property(TARGET ${_target_name} APPEND PROPERTY COMPILE_DEFINITIONS "CURL_NO_GETADDRINFO_OVERRIDE")
|
||||
set_target_properties(${_target_name} PROPERTIES
|
||||
OUTPUT_NAME "${_target}"
|
||||
PROJECT_LABEL "Test server ${_target}")
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ LIBS = $(BLANK_AT_MAKETIME)
|
|||
if DOING_NATIVE_WINDOWS
|
||||
AM_CPPFLAGS += -DCURL_STATICLIB
|
||||
endif
|
||||
AM_CPPFLAGS += -DCURL_NO_GETADDRINFO_OVERRIDE
|
||||
|
||||
# Makefile.inc provides neat definitions
|
||||
include Makefile.inc
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@
|
|||
* SPDX-License-Identifier: curl
|
||||
*
|
||||
***************************************************************************/
|
||||
#ifndef CURL_NO_GETADDRINFO_OVERRIDE
|
||||
#define CURL_NO_GETADDRINFO_OVERRIDE
|
||||
#endif
|
||||
|
||||
#include "server_setup.h"
|
||||
|
||||
/* Purpose
|
||||
|
|
@ -125,11 +129,9 @@ int main(int argc, char *argv[])
|
|||
hints.ai_family = use_ipv6 ? PF_INET6 : PF_INET;
|
||||
hints.ai_socktype = SOCK_STREAM;
|
||||
hints.ai_flags = 0;
|
||||
/* Use parenthesis around functions to stop them from being replaced by
|
||||
the macro in memdebug.h */
|
||||
rc = (getaddrinfo)(host, "80", &hints, &ai);
|
||||
rc = getaddrinfo(host, "80", &hints, &ai);
|
||||
if(rc == 0)
|
||||
(freeaddrinfo)(ai);
|
||||
freeaddrinfo(ai);
|
||||
}
|
||||
#else
|
||||
if(use_ipv6) {
|
||||
|
|
|
|||
|
|
@ -1433,8 +1433,8 @@ success:
|
|||
|
||||
#define data_or_ctrl(x) ((x)?"DATA":"CTRL")
|
||||
|
||||
#define CTRL 0
|
||||
#define DATA 1
|
||||
#define SWS_CTRL 0
|
||||
#define SWS_DATA 1
|
||||
|
||||
static void http_connect(curl_socket_t *infdp,
|
||||
curl_socket_t rootfd,
|
||||
|
|
@ -1454,13 +1454,13 @@ static void http_connect(curl_socket_t *infdp,
|
|||
bool poll_server_wr[2] = { TRUE, TRUE };
|
||||
bool primary = FALSE;
|
||||
bool secondary = FALSE;
|
||||
int max_tunnel_idx; /* CTRL or DATA */
|
||||
int max_tunnel_idx; /* SWS_CTRL or SWS_DATA */
|
||||
int loop;
|
||||
int i;
|
||||
int timeout_count = 0;
|
||||
|
||||
/* primary tunnel client endpoint already connected */
|
||||
clientfd[CTRL] = *infdp;
|
||||
clientfd[SWS_CTRL] = *infdp;
|
||||
|
||||
/* Sleep here to make sure the client reads CONNECT response's
|
||||
'end of headers' separate from the server data that follows.
|
||||
|
|
@ -1470,8 +1470,8 @@ static void http_connect(curl_socket_t *infdp,
|
|||
if(got_exit_signal)
|
||||
goto http_connect_cleanup;
|
||||
|
||||
serverfd[CTRL] = connect_to(ipaddr, ipport);
|
||||
if(serverfd[CTRL] == CURL_SOCKET_BAD)
|
||||
serverfd[SWS_CTRL] = connect_to(ipaddr, ipport);
|
||||
if(serverfd[SWS_CTRL] == CURL_SOCKET_BAD)
|
||||
goto http_connect_cleanup;
|
||||
|
||||
/* Primary tunnel socket endpoints are now connected. Tunnel data back and
|
||||
|
|
@ -1479,7 +1479,7 @@ static void http_connect(curl_socket_t *infdp,
|
|||
tunnel, simultaneously allowing establishment, operation and teardown of
|
||||
a secondary tunnel that may be used for passive FTP data connection. */
|
||||
|
||||
max_tunnel_idx = CTRL;
|
||||
max_tunnel_idx = SWS_CTRL;
|
||||
primary = TRUE;
|
||||
|
||||
while(!got_exit_signal) {
|
||||
|
|
@ -1493,10 +1493,10 @@ static void http_connect(curl_socket_t *infdp,
|
|||
FD_ZERO(&input);
|
||||
FD_ZERO(&output);
|
||||
|
||||
if((clientfd[DATA] == CURL_SOCKET_BAD) &&
|
||||
(serverfd[DATA] == CURL_SOCKET_BAD) &&
|
||||
poll_client_rd[CTRL] && poll_client_wr[CTRL] &&
|
||||
poll_server_rd[CTRL] && poll_server_wr[CTRL]) {
|
||||
if((clientfd[SWS_DATA] == CURL_SOCKET_BAD) &&
|
||||
(serverfd[SWS_DATA] == CURL_SOCKET_BAD) &&
|
||||
poll_client_rd[SWS_CTRL] && poll_client_wr[SWS_CTRL] &&
|
||||
poll_server_rd[SWS_CTRL] && poll_server_wr[SWS_CTRL]) {
|
||||
/* listener socket is monitored to allow client to establish
|
||||
secondary tunnel only when this tunnel is not established
|
||||
and primary one is fully operational */
|
||||
|
|
@ -1557,8 +1557,8 @@ static void http_connect(curl_socket_t *infdp,
|
|||
/* ---------------------------------------------------------- */
|
||||
|
||||
/* passive mode FTP may establish a secondary tunnel */
|
||||
if((clientfd[DATA] == CURL_SOCKET_BAD) &&
|
||||
(serverfd[DATA] == CURL_SOCKET_BAD) && FD_ISSET(rootfd, &input)) {
|
||||
if((clientfd[SWS_DATA] == CURL_SOCKET_BAD) &&
|
||||
(serverfd[SWS_DATA] == CURL_SOCKET_BAD) && FD_ISSET(rootfd, &input)) {
|
||||
/* a new connection on listener socket (most likely from client) */
|
||||
curl_socket_t datafd = accept(rootfd, NULL, NULL);
|
||||
if(datafd != CURL_SOCKET_BAD) {
|
||||
|
|
@ -1598,19 +1598,19 @@ static void http_connect(curl_socket_t *infdp,
|
|||
wait_ms(250);
|
||||
if(!got_exit_signal) {
|
||||
/* connect to the server */
|
||||
serverfd[DATA] = connect_to(ipaddr, req2->connect_port);
|
||||
if(serverfd[DATA] != CURL_SOCKET_BAD) {
|
||||
serverfd[SWS_DATA] = connect_to(ipaddr, req2->connect_port);
|
||||
if(serverfd[SWS_DATA] != CURL_SOCKET_BAD) {
|
||||
/* secondary tunnel established, now we have two
|
||||
connections */
|
||||
poll_client_rd[DATA] = TRUE;
|
||||
poll_client_wr[DATA] = TRUE;
|
||||
poll_server_rd[DATA] = TRUE;
|
||||
poll_server_wr[DATA] = TRUE;
|
||||
max_tunnel_idx = DATA;
|
||||
poll_client_rd[SWS_DATA] = TRUE;
|
||||
poll_client_wr[SWS_DATA] = TRUE;
|
||||
poll_server_rd[SWS_DATA] = TRUE;
|
||||
poll_server_wr[SWS_DATA] = TRUE;
|
||||
max_tunnel_idx = SWS_DATA;
|
||||
secondary = TRUE;
|
||||
toc[DATA] = 0;
|
||||
tos[DATA] = 0;
|
||||
clientfd[DATA] = datafd;
|
||||
toc[SWS_DATA] = 0;
|
||||
tos[SWS_DATA] = 0;
|
||||
clientfd[SWS_DATA] = datafd;
|
||||
datafd = CURL_SOCKET_BAD;
|
||||
}
|
||||
}
|
||||
|
|
@ -1761,7 +1761,7 @@ static void http_connect(curl_socket_t *infdp,
|
|||
clientfd[i] = CURL_SOCKET_BAD;
|
||||
if(serverfd[i] == CURL_SOCKET_BAD) {
|
||||
logmsg("[%s] ENDING", data_or_ctrl(i));
|
||||
if(i == DATA)
|
||||
if(i == SWS_DATA)
|
||||
secondary = FALSE;
|
||||
else
|
||||
primary = FALSE;
|
||||
|
|
@ -1775,7 +1775,7 @@ static void http_connect(curl_socket_t *infdp,
|
|||
serverfd[i] = CURL_SOCKET_BAD;
|
||||
if(clientfd[i] == CURL_SOCKET_BAD) {
|
||||
logmsg("[%s] ENDING", data_or_ctrl(i));
|
||||
if(i == DATA)
|
||||
if(i == SWS_DATA)
|
||||
secondary = FALSE;
|
||||
else
|
||||
primary = FALSE;
|
||||
|
|
@ -1787,7 +1787,7 @@ static void http_connect(curl_socket_t *infdp,
|
|||
|
||||
/* ---------------------------------------------------------- */
|
||||
|
||||
max_tunnel_idx = secondary ? DATA : CTRL;
|
||||
max_tunnel_idx = secondary ? SWS_DATA : SWS_CTRL;
|
||||
|
||||
if(!primary)
|
||||
/* exit loop upon primary tunnel teardown */
|
||||
|
|
@ -1805,7 +1805,7 @@ static void http_connect(curl_socket_t *infdp,
|
|||
|
||||
http_connect_cleanup:
|
||||
|
||||
for(i = DATA; i >= CTRL; i--) {
|
||||
for(i = SWS_DATA; i >= SWS_CTRL; i--) {
|
||||
if(serverfd[i] != CURL_SOCKET_BAD) {
|
||||
logmsg("[%s] CLOSING server socket (cleanup)", data_or_ctrl(i));
|
||||
shutdown(serverfd[i], SHUT_RDWR);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue