From: Date: April 19 2006 4:23pm Subject: bk commit into 5.0 tree (msvensson:1.2166) BUG#19190 List-Archive: http://lists.mysql.com/commits/5145 X-Bug: 19190 Message-Id: <20060419142341.BD27886DE76@localhost.localdomain> Below is the list of changes that have just been committed into a local 5.0 repository of msvensson. When msvensson 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.2166 06/04/19 16:23:35 msvensson@neptunus.(none) +1 -0 Bug#19190 syntax error in mysql-test/mysql-test-run.sh script mysql-test/mysql-test-run.sh 1.301 06/04/19 16:23:30 msvensson@neptunus.(none) +3 -1 Use 'test', not '[' as the shell builtin might not have '-L # 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: msvensson # Host: neptunus.(none) # Root: /home/msvensson/mysql/my50-bug19190 --- 1.300/mysql-test/mysql-test-run.sh 2006-04-07 19:50:01 +02:00 +++ 1.301/mysql-test/mysql-test-run.sh 2006-04-19 16:23:30 +02:00 @@ -631,7 +631,9 @@ [ -d $MYSQL_TEST_DIR/var/tmp ] || mkdir $MYSQL_TEST_DIR/var/tmp [ -d $MYSQL_TEST_DIR/var/run ] || mkdir $MYSQL_TEST_DIR/var/run [ -d $MYSQL_TEST_DIR/var/log ] || mkdir $MYSQL_TEST_DIR/var/log -if ! test -L $MYSQL_TEST_DIR/var/std_data_ln ; then + +# Use 'test', not '[' as the shell builtin might not have '-L +if test ! -L "$MYSQL_TEST_DIR/var/std_data_ln" ; then ln -s $MYSQL_TEST_DIR/std_data/ $MYSQL_TEST_DIR/var/std_data_ln fi