tests: wrap ignored test failures in braces

This commit is contained in:
Marc Hoersken 2020-03-04 22:36:47 +01:00
Родитель 3c1b9145c7
Коммит 30f7360025
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -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);