Below is the list of changes that have just been committed into a local
5.1 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
1.2132 06/02/17 16:20:53 kent@stripped +1 -0
mysql-test-run.pl:
Added --comment=<string> option
mysql-test/mysql-test-run.pl
1.70 06/02/17 16:20:33 kent@stripped +16 -8
Added --comment=<string> option
# 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-6f4072d5.010-2112-6f72651.cust.bredbandsbolaget.se
# Root: /Users/kent/mysql/bk/mysql-5.1-release
--- 1.69/mysql-test/mysql-test-run.pl 2006-02-14 09:15:44 +01:00
+++ 1.70/mysql-test/mysql-test-run.pl 2006-02-17 16:20:33 +01:00
@@ -508,13 +508,15 @@
# These are defaults for things that are set on the command line
$opt_suite= "main"; # Special default suite
- my $opt_master_myport= 9306;
- my $opt_slave_myport= 9308;
- $opt_ndbcluster_port= 9350;
+ my $opt_comment;
+
+ my $opt_master_myport= 9306;
+ my $opt_slave_myport= 9308;
+ $opt_ndbcluster_port= 9350;
$opt_ndbcluster_port_slave= 9358;
- my $im_port= 9310;
- my $im_mysqld1_port= 9312;
- my $im_mysqld2_port= 9314;
+ my $im_port= 9310;
+ my $im_mysqld1_port= 9312;
+ my $im_mysqld2_port= 9314;
#
# To make it easier for different devs to work on the same host,
@@ -626,6 +628,7 @@
'big-test' => \$opt_big_test,
'debug' => \$opt_debug,
'fast' => \$opt_fast,
+ 'comment=s' => \$opt_comment,
'local' => \$opt_local,
'local-master' => \$opt_local_master,
'netware' => \$opt_netware,
@@ -652,9 +655,14 @@
'help|h' => \$opt_usage,
) or usage("Can't read options");
- if ( $opt_usage )
+ usage("") if $opt_usage;
+
+ if ( $opt_comment )
{
- usage("");
+ print "\n";
+ print '#' x 78, "\n";
+ print "# $opt_comment\n";
+ print '#' x 78, "\n\n";
}
foreach my $arg ( @ARGV )
| Thread |
|---|
| • bk commit into 5.1 tree (kent:1.2132) | kent | 17 Feb |