diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-10-12 09:44:55 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-10-12 09:44:55 +0200 |
commit | ce3631a643a9bc54a764780ced988d6985fff637 (patch) | |
tree | 3642a5fba24695675a4ba775c0dfe2104acaf98d | |
parent | a27984cec7ed69ddab122280aedc325278a5104d (diff) | |
download | curl-bagder/runtests-tests.tar.gz |
fixup don't return error if $unexpected is setbagder/runtests-tests
-rwxr-xr-x | tests/runtests.pl | 4 |
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; } |