diff options
author | Timmy Schierling <chilledtimmy@googlemail.com> | 2023-01-02 14:06:28 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2023-01-02 16:03:28 +0100 |
commit | 7baff01fd6ef21c06f003ecd6fc4370d762d4691 (patch) | |
tree | a3a1fb5ee407756b41ee2ba1c290c756982e5b46 | |
parent | b637f353463887e980f6adad8305ca9a07dab21d (diff) | |
download | curl-7baff01fd6ef21c06f003ecd6fc4370d762d4691.tar.gz |
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
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 0547d3a46..68287c5a9 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); |