Commit 3b799e8f authored by unknown's avatar unknown

removed --rpl option of ./mysql-test-run

(./mysql-test-run t/rpl*.test  do same work)

parent 34e882dd
...@@ -210,7 +210,6 @@ CHARACTER_SET=latin1 ...@@ -210,7 +210,6 @@ CHARACTER_SET=latin1
DBUSER="" DBUSER=""
START_WAIT_TIMEOUT=10 START_WAIT_TIMEOUT=10
STOP_WAIT_TIMEOUT=10 STOP_WAIT_TIMEOUT=10
TEST_REPLICATION=0
MYSQL_TEST_SSL_OPTS="" MYSQL_TEST_SSL_OPTS=""
while test $# -gt 0; do while test $# -gt 0; do
...@@ -288,9 +287,6 @@ while test $# -gt 0; do ...@@ -288,9 +287,6 @@ while test $# -gt 0; do
--user-test=*) --user-test=*)
USER_TEST=`$ECHO "$1" | $SED -e "s;--user-test=;;"` USER_TEST=`$ECHO "$1" | $SED -e "s;--user-test=;;"`
;; ;;
--rpl)
TEST_REPLICATION=1
;;
--mysqld=*) --mysqld=*)
TMP=`$ECHO "$1" | $SED -e "s;--mysqld=;;"` TMP=`$ECHO "$1" | $SED -e "s;--mysqld=;;"`
EXTRA_MASTER_MYSQLD_OPT="$EXTRA_MASTER_MYSQLD_OPT $TMP" EXTRA_MASTER_MYSQLD_OPT="$EXTRA_MASTER_MYSQLD_OPT $TMP"
...@@ -1407,17 +1403,10 @@ then ...@@ -1407,17 +1403,10 @@ then
if [ x$RECORD = x1 ]; then if [ x$RECORD = x1 ]; then
$ECHO "Will not run in record mode without a specific test case." $ECHO "Will not run in record mode without a specific test case."
else else
if [ x$TEST_REPLICATION = x1 ]; then for tf in $TESTDIR/*.$TESTSUFFIX
for tf in `ls -1 $TESTDIR/*.$TESTSUFFIX | $SORT` do
do run_testcase $tf
run_testcase $tf done
done
else
for tf in $TESTDIR/*.$TESTSUFFIX
do
run_testcase $tf
done
fi
$RM -f $TIMEFILE # Remove for full test $RM -f $TIMEFILE # Remove for full test
fi fi
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment