summaryrefslogtreecommitdiff
path: root/mysql-test/lib/mtr_report.pm
diff options
context:
space:
mode:
authorBjorn Munch <Bjorn.Munch@sun.com>2009-02-02 11:26:19 +0100
committerBjorn Munch <Bjorn.Munch@sun.com>2009-02-02 11:26:19 +0100
commitd3f4c75e556580106ed9476655bc36f95aa3a825 (patch)
tree772cfde37aea6d100b0a5cb4aeba895e1735e51f /mysql-test/lib/mtr_report.pm
parent19e28b379214a6dc7b5031cfe636f95f3c8fa752 (diff)
downloadmariadb-git-d3f4c75e556580106ed9476655bc36f95aa3a825.tar.gz
Bug #42535 MTR2 output format for skipped tests should be identical to MTR 1
Changed [ skip ] to [ skipped ] and removed optional .
Diffstat (limited to 'mysql-test/lib/mtr_report.pm')
-rw-r--r--mysql-test/lib/mtr_report.pm11
1 files changed, 2 insertions, 9 deletions
diff --git a/mysql-test/lib/mtr_report.pm b/mysql-test/lib/mtr_report.pm
index 0cfbcb4c52e..ce3fba87385 100644
--- a/mysql-test/lib/mtr_report.pm
+++ b/mysql-test/lib/mtr_report.pm
@@ -165,18 +165,11 @@ sub mtr_report_test ($) {
}
elsif ( $comment )
{
- if ( $tinfo->{skip_detected_by_test} )
- {
- mtr_report("[ skip ]. $comment");
- }
- else
- {
- mtr_report("[ skip ] $comment");
- }
+ mtr_report("[ skipped ] $comment");
}
else
{
- mtr_report("[ skip ]");
+ mtr_report("[ skipped ]");
}
}
elsif ($result eq 'MTR_RES_PASSED')