Below is the list of changes that have just been committed into a local
5.0 repository of kent. When kent 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, 2006-11-24 18:26:53+01:00, kent@stripped +2 -0
mysql-test-run.pl:
Removed "use diagnostics", reduces Perl speed significantly. Can be
enabled with "perl -Mdiagnostics mysql-test-run.pl".
mtr_report.pl:
Don't try output "skipped" comment if there is none (bug#24471)
mysql-test/lib/mtr_report.pl@stripped, 2006-11-24 18:25:47+01:00, kent@stripped +5 -1
Don't try output "skipped" comment if there is none (bug#24471)
mysql-test/mysql-test-run.pl@stripped, 2006-11-24 18:23:15+01:00, kent@stripped +0 -1
Removed "use diagnostics", reduces Perl speed significantly. Can be
enabled with "perl -Mdiagnostics mysql-test-run.pl".
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: kent
# Host: c-634072d5.010-2112-6f72651.cust.bredbandsbolaget.se
# Root: /Users/kent/mysql/bk/build/mysql-5.0-build
--- 1.29/mysql-test/lib/mtr_report.pl 2006-11-24 18:28:15 +01:00
+++ 1.30/mysql-test/lib/mtr_report.pl 2006-11-24 18:28:16 +01:00
@@ -89,9 +89,13 @@
{
print "[ disabled ] $tinfo->{'comment'}\n";
}
- else
+ elsif ( $tinfo->{'comment'} )
{
print "[ skipped ] $tinfo->{'comment'}\n";
+ }
+ else
+ {
+ print "[ skipped ]\n";
}
}
--- 1.152/mysql-test/mysql-test-run.pl 2006-11-24 18:28:16 +01:00
+++ 1.153/mysql-test/mysql-test-run.pl 2006-11-24 18:28:16 +01:00
@@ -66,7 +66,6 @@
use Data::Dumper;
use strict;
use warnings;
-use diagnostics;
select(STDOUT);
$| = 1; # Automatically flush STDOUT
| Thread |
|---|
| • bk commit into 5.0 tree (kent:1.2313) BUG#24471 | kent | 24 Nov |