Commit dbfa53d2 authored by unknown's avatar unknown
Browse files

Bug#25592 wrong reporting for mysql-test-run.pl --mysqld=--binlog-format=...


mysql-test/mysql-test-run.pl:
  Allow both dash and underscore as separator for mysqld option
parent a4a619dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -757,7 +757,7 @@ sub command_line_setup () {

    foreach my $arg ( @opt_extra_mysqld_opt )
    {
      if ( $arg =~ /binlog-format=(\S+)/ )
      if ( $arg =~ /binlog[-_]format=(\S+)/ )
      {
	$used_binlog_format= $1;
      }