From: Daniel Stenberg Date: Mon, 7 Jun 2021 11:16:38 +0000 (+0200) Subject: test500: adjust to work with hyper mode X-Git-Tag: curl-7_78_0~182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48b0cca65e950f79bc31eec1eb64409b295a4579;p=thirdparty%2Fcurl.git test500: adjust to work with hyper mode --- diff --git a/tests/data/test500 b/tests/data/test500 index e0d8e93d3f..514d0b9745 100644 --- a/tests/data/test500 +++ b/tests/data/test500 @@ -46,7 +46,7 @@ http://%HOSTIP:%HTTPPORT/%TESTNUMBER log/ip%TESTNUMBER # Verify data after the test has been "shot" -IP: %HOSTIP +IP %HOSTIP GET /%TESTNUMBER HTTP/1.1 diff --git a/tests/libtest/lib500.c b/tests/libtest/lib500.c index d3b4b60f78..5bb0cff44b 100644 --- a/tests/libtest/lib500.c +++ b/tests/libtest/lib500.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2021, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -101,7 +101,7 @@ int test(char *URL) curl_off_t time_pretransfer; curl_off_t time_starttransfer; curl_off_t time_total; - fprintf(moo, "IP: %s\n", ipstr); + fprintf(moo, "IP %s\n", ipstr); curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME_T, &time_namelookup); curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME_T, &time_connect); curl_easy_getinfo(curl, CURLINFO_PRETRANSFER_TIME_T,