Commit d3f4c75e authored by Bjorn Munch's avatar Bjorn Munch

Bug #42535 MTR2 output format for skipped tests should be identical to MTR 1

Changed [ skip ] to [ skipped ] and removed optional .
parent 19e28b37
...@@ -165,18 +165,11 @@ sub mtr_report_test ($) { ...@@ -165,18 +165,11 @@ sub mtr_report_test ($) {
} }
elsif ( $comment ) elsif ( $comment )
{ {
if ( $tinfo->{skip_detected_by_test} ) mtr_report("[ skipped ] $comment");
{
mtr_report("[ skip ]. $comment");
}
else
{
mtr_report("[ skip ] $comment");
}
} }
else else
{ {
mtr_report("[ skip ]"); mtr_report("[ skipped ]");
} }
} }
elsif ($result eq 'MTR_RES_PASSED') elsif ($result eq 'MTR_RES_PASSED')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment