1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bug #48240 "Test suite timeout" and "Too many tests failed" is masked from status page

Prepend "Completed", "Timeout" or "Too many failed" to summary line
This commit is contained in:
Bjorn Munch
2009-10-26 14:28:51 +01:00
parent 0777ef567d
commit c22826bfad
2 changed files with 8 additions and 5 deletions

View File

@@ -222,8 +222,8 @@ sub mtr_report_test ($) {
}
sub mtr_report_stats ($;$) {
my ($tests, $dont_error)= @_;
sub mtr_report_stats ($$;$) {
my ($prefix, $tests, $dont_error)= @_;
# ----------------------------------------------------------------------
# Find out how we where doing
@@ -328,6 +328,9 @@ sub mtr_report_stats ($;$) {
}
}
# Print summary line prefix
print "$prefix: ";
# Print a list of testcases that failed
if ( $tot_failed != 0 )
{