List:Internals« Previous MessageNext Message »
From:kent Date:June 20 2005 9:49am
Subject:bk commit into 4.1 tree (kent:1.2298)
View as plain text  
Below is the list of changes that have just been committed into a local
4.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.2298 05/06/20 11:49:25 kent@stripped +1 -0
  mysql-test-run.pl:
    Corrected path to 'mysql_fix_privilege_tables'
    Corrected dummy --manager-port to take integer argument

  mysql-test/mysql-test-run.pl
    1.26 05/06/20 11:36:58 kent@stripped +1 -1
    Corrected path to 'mysql_fix_privilege_tables'

  mysql-test/mysql-test-run.pl
    1.25 05/06/20 11:24:26 kent@stripped +7 -6
    Corrected dummy --manager-port to take integer argument

# 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:	g4.boortz.dyndns.org
# Root:	/Users/kent/mysql/bk/mysql-4.1

--- 1.24/mysql-test/mysql-test-run.pl	2005-06-19 20:03:36 +02:00
+++ 1.26/mysql-test/mysql-test-run.pl	2005-06-20 11:36:58 +02:00
@@ -445,9 +445,9 @@
   # 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_master_myport= 9306;
+  my $opt_slave_myport=  9308;
+  $opt_ndbcluster_port=  9350;
 
   # Read the command line
   # Note: Keep list, and the order, in sync with usage at end of this file
@@ -458,7 +458,7 @@
              'ps-protocol'              => \$opt_ps_protocol,
              'bench'                    => \$opt_bench,
              'small-bench'              => \$opt_small_bench,
-             'no-manager'               => \$opt_no_manager,
+             'no-manager'               => \$opt_no_manager, # Currently not used
 
              # Control what test suites or cases to run
              'force'                    => \$opt_force,
@@ -472,7 +472,7 @@
              'master_port=i'            => \$opt_master_myport,
              'slave_port=i'             => \$opt_slave_myport,
              'ndbcluster_port=i'        => \$opt_ndbcluster_port,
-             'manager-port'             => \$opt_manager_port,
+             'manager-port=i'           => \$opt_manager_port, # Currently not used
 
              # Test case authoring
              'record'                   => \$opt_record,
@@ -840,7 +840,7 @@
     $exe_mysqlbinlog=       "$path_client_bindir/mysqlbinlog";
     $exe_mysqladmin=        "$path_client_bindir/mysqladmin";
     $exe_mysql=             "$path_client_bindir/mysql";
-    $exe_mysql_fix_system_tables= "$path_client_bindir/scripts/mysql_fix_privilege_tables";
+    $exe_mysql_fix_system_tables= "$glob_basedir/scripts/mysql_fix_privilege_tables";
 
     if ( -d "$glob_basedir/share/mysql/english" )
     {
@@ -2219,7 +2219,8 @@
 
   master_port=PORT      Specify the port number used by the first master
   slave_port=PORT       Specify the port number used by the first slave
-  ndbcluster_port=i     Specify the port number used by cluster FIXME
+  ndbcluster_port=PORT  Specify the port number used by cluster
+  manager-port=PORT     Specify the port number used by manager (currently not used)
 
 Options for test case authoring
 
Thread
bk commit into 4.1 tree (kent:1.2298)kent20 Jun