Browse Source

Patch for Bug#52410 (Test "mysqld--help-*": further output differences).

That was a pure test issue -- filter implementation in Perl did not work
on some platform (the bug occurred on Windows Server 2008 with
Cygwin Perl 5.10.0).
pull/374/head
Alexander Nozdrin 16 years ago
parent
commit
7f0a5d2b7a
  1. 2
      mysql-test/include/mysqld--help.inc

2
mysql-test/include/mysqld--help.inc

@ -23,7 +23,7 @@ perl;
while (<F>) {
next if 1../The following groups are read/;
# formatting, skip line consisting entirely of dashes and blanks
next if /^[\- ]+$/;
next if /^[\- ]+\s?$/;
next if /Value \(after reading options\)/; # skip table header
next if /^($re1) /;
next if /^($re2)-/;

Loading…
Cancel
Save