diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2006-01-17 08:25:52 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2006-01-17 08:25:52 +0100 |
commit | 6f962fc6d37693cd533304f942e582590c3a17f0 (patch) | |
tree | 78bfa30ba1733611bb90c60a2edf6196f7d1d65a /mysql-test/mysql-test-run.sh | |
parent | ed96f7084952e1da54275d6d7ac02913c64ba006 (diff) | |
download | mariadb-git-6f962fc6d37693cd533304f942e582590c3a17f0.tar.gz |
added option to run all ndb tests only
Diffstat (limited to 'mysql-test/mysql-test-run.sh')
-rw-r--r-- | mysql-test/mysql-test-run.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index 5d583f506ba..4557ff97147 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -268,6 +268,7 @@ USE_RUNNING_SERVER=0 USE_NDBCLUSTER=@USE_NDBCLUSTER@ USE_NDBCLUSTER_SLAVE=@USE_NDBCLUSTER@ USE_NDBCLUSTER_ALL=0 +USE_NDBCLUSTER_ONLY=0 USE_RUNNING_NDBCLUSTER="" USE_RUNNING_NDBCLUSTER_SLAVE="" NDB_EXTRA_TEST=0 @@ -341,6 +342,10 @@ while test $# -gt 0; do USE_NDBCLUSTER="--ndbcluster" USE_NDBCLUSTER_SLAVE="--ndbcluster" USE_NDBCLUSTER_ALL=1 ;; + --with-ndbcluster-only) + USE_NDBCLUSTER="--ndbcluster" + USE_NDBCLUSTER_SLAVE="--ndbcluster" + USE_NDBCLUSTER_ONLY=1 ;; --ndb-connectstring=*) USE_NDBCLUSTER="--ndbcluster" ; USE_RUNNING_NDBCLUSTER=`$ECHO "$1" | $SED -e "s;--ndb-connectstring=;;"` ;; @@ -1750,6 +1755,10 @@ run_testcase () if [ "x$USE_NDBCLUSTER_ALL" = "x1" ] ; then NDBCLUSTER_TEST=1 fi + if [ "x$USE_NDBCLUSTER_ONLY" = "x1" -a "x$NDBCLUSTER_TEST" != "x1" ] ; then + skip_test $tname + return + fi if [ "$USE_MANAGER" = 1 ] ; then many_slaves=`$EXPR \( \( $tname : rpl_failsafe \) != 0 \) \| \( \( $tname : rpl_chain_temp_table \) != 0 \)` fi |