List:Commits« Previous MessageNext Message »
From:jonas Date:September 13 2006 9:41pm
Subject:bk commit into 5.0 tree (jonas:1.2251)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of jonas. When jonas 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-09-13 23:41:33+02:00, jonas@stripped +1 -0
  ndb - autotest
    fix autotest.conf handling

  ndb/test/run-test/autotest-boot.sh@stripped, 2006-09-13 23:41:31+02:00, jonas@stripped +7 -2
    fix autotest.conf handling

# 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:	jonas
# Host:	perch.ndb.mysql.com
# Root:	/home/jonas/src/50-atrt

--- 1.3/ndb/test/run-test/autotest-boot.sh	2006-09-13 23:41:36 +02:00
+++ 1.4/ndb/test/run-test/autotest-boot.sh	2006-09-13 23:41:36 +02:00
@@ -24,7 +24,7 @@
 do_clone=yes
 build=yes
 
-conf=autotest.conf
+conf=
 LOCK=$HOME/.autotest-lock
 
 ############################
@@ -39,6 +39,7 @@
                 --verbose) verbose=`expr $verbose + 1`;;
                 --clone=*) clone=`echo $1 | sed s/--clone=//`;;
                 --version) echo $VERSION; exit;;
+                --conf=*) conf=`echo $1 | sed s/--conf=//`;;
                 *) RUN=$*;;
         esac
         shift
@@ -49,6 +50,10 @@
 #if it does not exit. if it does#
 # (.) load it			# 
 #################################
+if [ -z "$conf" ]
+then
+    conf=`pwd`/autotest.conf
+fi
 
 if [ -f $conf ]
 then
@@ -152,7 +157,7 @@
 ################################
 
 script=$install_dir/mysql-test/ndb/autotest-run.sh
-$script $save_args --install-dir=$install_dir --suite=$RUN
+$script $save_args --conf=$conf --install-dir=$install_dir --suite=$RUN
 
 if [ "$build" ]
 then
Thread
bk commit into 5.0 tree (jonas:1.2251)jonas13 Sep