Commit e65726c6 authored by unknown's avatar unknown

Merge bk-internal:/home/bk/mysql-5.0

into  shellback.(none):/home/msvensson/mysql/mysqltestrun_ndbclusterstart/my50-mysqltestrun_ndbclusterstart
parents afdf3256 49f6a18d
...@@ -258,6 +258,13 @@ sub collect_one_test_case($$$$$$$) { ...@@ -258,6 +258,13 @@ sub collect_one_test_case($$$$$$$) {
$tinfo->{'ndb_test'}= 1; $tinfo->{'ndb_test'}= 1;
if ( $::opt_skip_ndbcluster ) if ( $::opt_skip_ndbcluster )
{ {
# Skip all ndb tests
$tinfo->{'skip'}= 1;
return;
}
if ( ! $::opt_with_ndbcluster )
{
# Ndb is not supported, skip them
$tinfo->{'skip'}= 1; $tinfo->{'skip'}= 1;
return; return;
} }
......
...@@ -1840,7 +1840,7 @@ sub run_testcase ($) { ...@@ -1840,7 +1840,7 @@ sub run_testcase ($) {
if ( $tinfo->{'master_restart'} or if ( $tinfo->{'master_restart'} or
$master->[0]->{'running_master_is_special'} or $master->[0]->{'running_master_is_special'} or
# Stop if cluster is started but test cases does not need cluster # Stop if cluster is started but test cases does not need cluster
( $tinfo->{'ndb_test'} != $using_ndbcluster_master ) ) ( $opt_with_ndbcluster && $tinfo->{'ndb_test'} != $using_ndbcluster_master ) )
{ {
stop_masters(); stop_masters();
$master->[0]->{'running_master_is_special'}= 0; # Forget why we stopped $master->[0]->{'running_master_is_special'}= 0; # Forget why we stopped
...@@ -1889,7 +1889,7 @@ sub run_testcase ($) { ...@@ -1889,7 +1889,7 @@ sub run_testcase ($) {
if ( $tinfo->{'component_id'} eq 'mysqld' and ! $opt_local_master ) if ( $tinfo->{'component_id'} eq 'mysqld' and ! $opt_local_master )
{ {
if ( $master->[0]->{'ndbcluster'} ) if ( $opt_with_ndbcluster and $master->[0]->{'ndbcluster'} )
{ {
# Cluster is not started # Cluster is not started
......
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