diff options
author | msvensson@neptunus.(none) <> | 2006-11-28 12:33:36 +0100 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-11-28 12:33:36 +0100 |
commit | d1ed2e21b8855128a0cf705dc606f3b818f9a07f (patch) | |
tree | 586c5f6264073e89d85d91498fc06106c697039f /mysql-test/lib | |
parent | d4595f3c57ae97e9251ee3b1680ad9fd6ddb218f (diff) | |
download | mariadb-git-d1ed2e21b8855128a0cf705dc606f3b818f9a07f.tar.gz |
Backport of patch for bug#24471
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_report.pl | 6 |
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 ($) { |