Below is the list of changes that have just been pushed into main
4.0 repository. For information on how to access the repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html
ChangeSet@stripped, 2001-06-19 16:08:19-06:00, sasha@stripped
added --skip-test option
mysql-test/mysql-test-run.sh
1.78 01/06/19 16:08:18 sasha@stripped +8 -0
added --skip-test 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: sasha
# Host: mysql.sashanet.com
# Root: /home/sasha/src/bk/mysql-4.0
--- 1.77/mysql-test/mysql-test-run.sh Tue Jun 12 15:08:58 2001
+++ 1.78/mysql-test/mysql-test-run.sh Tue Jun 19 16:08:18 2001
@@ -144,6 +144,7 @@
EXTRA_MASTER_MYSQLD_OPT="$EXTRA_MASTER_MYSQLD_OPT --skip-bdb"
EXTRA_SLAVE_MYSQLD_OPT="$EXTRA_SLAVE_MYSQLD_OPT --skip-bdb" ;;
--skip-rpl) NO_SLAVE=1 ;;
+ --skip-test=*) SKIP_TEST=`$ECHO "$1" | $SED -e "s;--skip-test=;;"`;;
--record)
RECORD=1;
EXTRA_MYSQL_TEST_OPT="$EXTRA_MYSQL_TEST_OPT $1" ;;
@@ -657,6 +658,13 @@
slave_init_script=$TESTDIR/$tname-slave.sh
slave_master_info_file=$TESTDIR/$tname-slave-master-info.opt
SKIP_SLAVE=`$EXPR \( $tname : rpl \) = 0`
+ if [ -n $SKIP_TEST ] ; then
+ SKIP_THIS_TEST=`$EXPR \( $tname : $SKIP_TEST \) != 0`
+ if [ x$SKIP_THIS_TEST = x1 ] ;
+ then
+ return;
+ fi
+ fi
if [ x${NO_SLAVE}x$SKIP_SLAVE = x1x0 ] ;
then
| Thread |
|---|
| • bk commit into 4.0 tree | sasha | 20 Jun |