From 48b0cca65e950f79bc31eec1eb64409b295a4579 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 7 Jun 2021 13:16:38 +0200 Subject: [PATCH] test500: adjust to work with hyper mode --- tests/data/test500 | 2 +- tests/libtest/lib500.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/data/test500 b/tests/data/test500 index e0d8e93d3..514d0b974 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 d3b4b60f7..5bb0cff44 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,