mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
Bug#40742 MTR_VERSION=1 perl mysql-test-run.pl --start-and-exit rpl_alter does not work
mysql-test/lib/v1/mtr_cases.pl: The combinations file in suite uses my.cnf file syntax - thus the options in the combinations file should not have -- prefixed. Add -- to the option while reading it from file.
This commit is contained in:
parent
f462fac548
commit
06fdd29404
1 changed files with 1 additions and 1 deletions
|
@ -369,7 +369,7 @@ sub collect_one_suite($)
|
|||
my $comb= {};
|
||||
$comb->{name}= $group->name();
|
||||
foreach my $option ( $group->options() ) {
|
||||
push(@{$comb->{comb_opt}}, $option->name()."=".$option->value());
|
||||
push(@{$comb->{comb_opt}}, "--".$option->name()."=".$option->value());
|
||||
}
|
||||
push(@combinations, $comb);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue