summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-10-12 09:44:55 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-10-12 09:44:55 +0200
commitce3631a643a9bc54a764780ced988d6985fff637 (patch)
tree3642a5fba24695675a4ba775c0dfe2104acaf98d
parenta27984cec7ed69ddab122280aedc325278a5104d (diff)
downloadcurl-ce3631a643a9bc54a764780ced988d6985fff637.tar.gz
fixup don't return error if $unexpected is setbagder/runtests-tests
-rwxr-xr-xtests/runtests.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index a53126b9a..a8d83e108 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -6175,7 +6175,7 @@ else {
}
}
-if(($total && (($ok+$ign) != $total)) || !$total || $unexpected) {
- logmsg "DEBUG: total $total ok $ok ign $ign unexpected $unexpected";
+if(($total && (($ok+$ign) != $total)) || !$total) {
+ logmsg "DEBUG: total $total ok $ok ign $ign";
exit 1;
}