From: Marc Hoersken Date: Wed, 4 Mar 2020 21:36:47 +0000 (+0100) Subject: tests: wrap ignored test failures in braces X-Git-Tag: curl-7_69_1~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=30f7360025010e237462ca1a697c8e55b4a73c92;p=thirdparty%2Fcurl.git tests: wrap ignored test failures in braces --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 7a5f8a5047..50c8683901 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -5588,7 +5588,13 @@ foreach $testnum (@at) { $total++; # number of tests we've run if($error>0) { - $failed.= "$testnum "; + if($error==2) { + # ignored test failures are wrapped in () + $failed.= "($testnum) "; + } + else { + $failed.= "$testnum "; + } if($postmortem) { # display all files in log/ in a nice way displaylogs($testnum);