mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint mysql-test/mysql-test-run.pl: Auto merged
This commit is contained in:
@ -405,9 +405,25 @@ sub main () {
|
||||
}
|
||||
$use_innodb||= $test->{'innodb_test'};
|
||||
}
|
||||
$opt_skip_ndbcluster= $opt_skip_ndbcluster_slave= 1
|
||||
unless $need_ndbcluster;
|
||||
$opt_skip_im= 1 unless $need_im;
|
||||
|
||||
# Check if cluster can be skipped
|
||||
if ( !$need_ndbcluster )
|
||||
{
|
||||
$opt_skip_ndbcluster= 1;
|
||||
$opt_skip_ndbcluster_slave= 1;
|
||||
}
|
||||
|
||||
# Check if slave cluster can be skipped
|
||||
if ($max_slave_num == 0)
|
||||
{
|
||||
$opt_skip_ndbcluster_slave= 1;
|
||||
}
|
||||
|
||||
# Check if im can be skipped
|
||||
if ( ! $need_im )
|
||||
{
|
||||
$opt_skip_im= 1;
|
||||
}
|
||||
|
||||
initialize_servers();
|
||||
|
||||
|
Reference in New Issue
Block a user