1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

BUG#24354 option "--extern" of mysql-test-run.pl does not work anymore

This commit is contained in:
msvensson@neptunus.(none)
2006-11-17 13:20:48 +01:00
parent 770a4f7c68
commit 3f2c3f04bf

View File

@ -3819,11 +3819,18 @@ sub run_testcase_need_master_restart($)
join(" ", @{$master->[0]->{'start_opts'}}) . "'" );
}
elsif( ! $master->[0]->{'pid'} )
{
if ( $opt_extern )
{
$do_restart= 0;
mtr_verbose("No restart: using extern master");
}
else
{
$do_restart= 1;
mtr_verbose("Restart master: master is not started");
}
}
return $do_restart;
}