mirror of
https://github.com/curl/curl.git
synced 2026-04-16 04:51:40 +03:00
tests: wrap ignored test failures in braces
This commit is contained in:
parent
3c1b9145c7
commit
30f7360025
1 changed files with 7 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue