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
This commit is contained in:
Timmy Schierling 2023-01-02 14:06:28 +01:00 committed by Daniel Stenberg
parent b637f35346
commit 7baff01fd6
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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);