mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
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".
This commit is contained in:
@ -277,6 +277,8 @@ our $opt_udiff;
|
|||||||
|
|
||||||
our $opt_skip_ndbcluster;
|
our $opt_skip_ndbcluster;
|
||||||
our $opt_with_ndbcluster;
|
our $opt_with_ndbcluster;
|
||||||
|
our $opt_with_ndbcluster_only= 0; # dummy, ignored
|
||||||
|
|
||||||
our $opt_with_openssl;
|
our $opt_with_openssl;
|
||||||
|
|
||||||
our $exe_ndb_mgm;
|
our $exe_ndb_mgm;
|
||||||
@ -512,6 +514,7 @@ sub command_line_setup () {
|
|||||||
'force' => \$opt_force,
|
'force' => \$opt_force,
|
||||||
'with-ndbcluster' => \$opt_with_ndbcluster,
|
'with-ndbcluster' => \$opt_with_ndbcluster,
|
||||||
'skip-ndbcluster|skip-ndb' => \$opt_skip_ndbcluster,
|
'skip-ndbcluster|skip-ndb' => \$opt_skip_ndbcluster,
|
||||||
|
'with-ndbcluster-only' => \$opt_with_ndbcluster_only,
|
||||||
'do-test=s' => \$opt_do_test,
|
'do-test=s' => \$opt_do_test,
|
||||||
'suite=s' => \$opt_suite,
|
'suite=s' => \$opt_suite,
|
||||||
'skip-rpl' => \$opt_skip_rpl,
|
'skip-rpl' => \$opt_skip_rpl,
|
||||||
@ -596,6 +599,11 @@ sub command_line_setup () {
|
|||||||
print '#' x 78, "\n\n";
|
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 )
|
foreach my $arg ( @ARGV )
|
||||||
{
|
{
|
||||||
if ( $arg =~ /^--skip-/ )
|
if ( $arg =~ /^--skip-/ )
|
||||||
|
Reference in New Issue
Block a user