List:Commits« Previous MessageNext Message »
From:Daniel Fischer Date:November 17 2006 5:09pm
Subject:bk commit into 5.1 tree (df:1.2371)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of df. When df 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-17 17:09:52+01:00, df@stripped +1 -0
  Merge mysql.com:/home/df/mysql/build/mysql-5.0-build-work
  into  mysql.com:/home/df/mysql/build/mysql-5.1-build
  MERGE: 1.1810.1698.188

  mysql-test/mysql-test-run.pl@stripped, 2006-11-17 17:09:13+01:00, df@stripped +0
-0
    Auto merged
    MERGE: 1.30.49.9

# 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:	df
# Host:	kahlann.erinye.com
# Root:	/home/df/mysql/build/mysql-5.1-build/RESYNC

--- 1.232/mysql-test/mysql-test-run.pl	2006-11-13 20:44:16 +01:00
+++ 1.233/mysql-test/mysql-test-run.pl	2006-11-17 17:09:13 +01:00
@@ -88,6 +88,7 @@ require "lib/mtr_diff.pl";
 require "lib/mtr_match.pl";
 require "lib/mtr_misc.pl";
 require "lib/mtr_stress.pl";
+require "lib/mtr_unique.pl";
 
 $Devel::Trace::TRACE= 1;
 
@@ -441,7 +442,6 @@ sub main () {
   mtr_exit(0);
 }
 
-
 ##############################################################################
 #
 #  Default settings
@@ -479,6 +479,12 @@ sub command_line_setup () {
   # But a fairly safe range seems to be 5001 - 32767
   if ( $ENV{'MTR_BUILD_THREAD'} )
   {
+    # If so requested, we try to avail ourselves of a unique build thread number.
+    if ( lc($ENV{'MTR_BUILD_THREAD'}) eq 'auto' ) {
+      print "Requesting build thread... ";
+      $ENV{'MTR_BUILD_THREAD'} = mtr_require_unique_id_and_wait("/tmp/mysql-test-ports",
200, 299);
+      print "got ".$ENV{'MTR_BUILD_THREAD'}."\n";
+    }
     # Up to two masters, up to three slaves
     $opt_master_myport=         $ENV{'MTR_BUILD_THREAD'} * 10 + 10000; # and 1
     $opt_slave_myport=          $opt_master_myport + 2;  # and 3 4
Thread
bk commit into 5.1 tree (df:1.2371)Daniel Fischer17 Nov