From: Timmy Schierling Date: Mon, 2 Jan 2023 13:06:28 +0000 (+0100) Subject: runtest.pl: add expected fourth return value X-Git-Tag: curl-7_88_0~183 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7baff01fd6ef21c06f003ecd6fc4370d762d4691;p=thirdparty%2Fcurl.git runtest.pl: add expected fourth return value Fixes warning in autobild log: "Use of uninitialized value $HTTP2TLSPORT in substitution iterator at /tests/runtests.pl line 3516" Closes #10206 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 0547d3a46e..68287c5a92 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1542,7 +1542,7 @@ sub runhttp2server { # don't retry if the server doesn't work if ($doesntrun{$pidfile}) { - return (0, 0, 0); + return (0, 0, 0, 0); } my $pid = processexists($pidfile);