#At file:///home/msvensson/mysql/5.1-rpl/
2696 Magnus Svensson 2008-11-14
Bug#40742 MTR_VERSION=1 perl mysql-test-run.pl --start-and-exit rpl_alter does not work
modified:
mysql-test/lib/v1/mtr_cases.pl
per-file messages:
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.
=== modified file 'mysql-test/lib/v1/mtr_cases.pl'
--- a/mysql-test/lib/v1/mtr_cases.pl 2008-11-14 08:45:32 +0000
+++ b/mysql-test/lib/v1/mtr_cases.pl 2008-11-14 14:39:12 +0000
@@ -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);
}
| Thread |
|---|
| • bzr commit into mysql-5.1 branch (msvensson:2696) Bug#40742 | Magnus Svensson | 14 Nov |