diff options
author | unknown <joerg@mysql.com> | 2006-04-07 13:34:39 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2006-04-07 13:34:39 +0200 |
commit | 7bb18828225628776ba908649b65e764a2533cde (patch) | |
tree | ce15f1f5e70040c4a0d9985a63906ece77382398 /mysql-test/mysql-test-run.pl | |
parent | 8fc0c48d5e929e7dcd38721a220d03c0f0979c74 (diff) | |
download | mariadb-git-7bb18828225628776ba908649b65e764a2533cde.tar.gz |
mysql-test/mysql-test-run.pl : Add option "with-ndbcluster-only" (ignored).
mysql-test/mysql-test-run.pl:
Add option "with-ndbcluster-only" (ignored) for compatibility with newer "Do-compile".
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index d4f759604dd..53bf820cce9 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -277,6 +277,8 @@ our $opt_udiff; our $opt_skip_ndbcluster; our $opt_with_ndbcluster; +our $opt_with_ndbcluster_only= 0; # dummy, ignored + our $opt_with_openssl; our $exe_ndb_mgm; @@ -512,6 +514,7 @@ sub command_line_setup () { 'force' => \$opt_force, 'with-ndbcluster' => \$opt_with_ndbcluster, 'skip-ndbcluster|skip-ndb' => \$opt_skip_ndbcluster, + 'with-ndbcluster-only' => \$opt_with_ndbcluster_only, 'do-test=s' => \$opt_do_test, 'suite=s' => \$opt_suite, 'skip-rpl' => \$opt_skip_rpl, @@ -596,6 +599,11 @@ sub command_line_setup () { print '#' x 78, "\n\n"; } + if ( $opt_with_ndbcluster_only ) + { + print "# Option '--with-ndbcluster-only' is ignored in this release.\n"; + } + foreach my $arg ( @ARGV ) { if ( $arg =~ /^--skip-/ ) |