mirror of
https://github.com/moparisthebest/curl
synced 2025-01-11 14:08:07 -05:00
tests: wrap ignored test failures in braces
This commit is contained in:
parent
3c1b9145c7
commit
30f7360025
@ -5588,7 +5588,13 @@ foreach $testnum (@at) {
|
|||||||
$total++; # number of tests we've run
|
$total++; # number of tests we've run
|
||||||
|
|
||||||
if($error>0) {
|
if($error>0) {
|
||||||
$failed.= "$testnum ";
|
if($error==2) {
|
||||||
|
# ignored test failures are wrapped in ()
|
||||||
|
$failed.= "($testnum) ";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$failed.= "$testnum ";
|
||||||
|
}
|
||||||
if($postmortem) {
|
if($postmortem) {
|
||||||
# display all files in log/ in a nice way
|
# display all files in log/ in a nice way
|
||||||
displaylogs($testnum);
|
displaylogs($testnum);
|
||||||
|
Loading…
Reference in New Issue
Block a user