summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimmy Schierling <chilledtimmy@googlemail.com>2023-01-02 14:06:28 +0100
committerDaniel Stenberg <daniel@haxx.se>2023-01-02 16:03:28 +0100
commit7baff01fd6ef21c06f003ecd6fc4370d762d4691 (patch)
treea3a1fb5ee407756b41ee2ba1c290c756982e5b46
parentb637f353463887e980f6adad8305ca9a07dab21d (diff)
downloadcurl-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-xtests/runtests.pl2
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);