summaryrefslogtreecommitdiff
path: root/mysql-test/lib
diff options
context:
space:
mode:
authormsvensson@neptunus.(none) <>2006-11-28 12:33:36 +0100
committermsvensson@neptunus.(none) <>2006-11-28 12:33:36 +0100
commitd1ed2e21b8855128a0cf705dc606f3b818f9a07f (patch)
tree586c5f6264073e89d85d91498fc06106c697039f /mysql-test/lib
parentd4595f3c57ae97e9251ee3b1680ad9fd6ddb218f (diff)
downloadmariadb-git-d1ed2e21b8855128a0cf705dc606f3b818f9a07f.tar.gz
Backport of patch for bug#24471
Diffstat (limited to 'mysql-test/lib')
-rw-r--r--mysql-test/lib/mtr_report.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl
index 8d7de9d1a4b..d0e836c1a90 100644
--- a/mysql-test/lib/mtr_report.pl
+++ b/mysql-test/lib/mtr_report.pl
@@ -89,10 +89,14 @@ sub mtr_report_test_skipped ($) {
{
print "[ disabled ] $tinfo->{'comment'}\n";
}
- else
+ elsif ( $tinfo->{'comment'} )
{
print "[ skipped ] $tinfo->{'comment'}\n";
}
+ else
+ {
+ print "[ skipped ]\n";
+ }
}
sub mtr_report_tests_not_skipped_though_disabled ($) {