List:Commits« Previous MessageNext Message »
From:msvensson Date:October 29 2007 10:49am
Subject:bk commit into 5.0 tree (msvensson:1.2560)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-10-29 10:49:26+01:00, msvensson@stripped +1 -0
  5.0 does not need to print suitename

  mysql-test/lib/mtr_report.pl@stripped, 2007-10-29 10:49:25+01:00, msvensson@stripped
+6 -2
    5.0 does not need to print suitename

diff -Nrup a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl
--- a/mysql-test/lib/mtr_report.pl	2007-10-24 16:48:03 +02:00
+++ b/mysql-test/lib/mtr_report.pl	2007-10-29 10:49:25 +01:00
@@ -40,9 +40,13 @@ my $tot_real_time= 0;
 
 sub mtr_report_test_name ($) {
   my $tinfo= shift;
+  my $tname= $tinfo->{name};
 
-  _mtr_log("$tinfo->{name}");
-  printf "%-30s ", $tinfo->{'name'};
+  # Remove suite part of name
+  $tname =~ s/.*\.//;
+
+  _mtr_log("$tname");
+  printf "%-30s ", $tname;
 }
 
 sub mtr_report_test_skipped ($) {
Thread
bk commit into 5.0 tree (msvensson:1.2560)msvensson29 Oct