Commit 34c08652 authored by unknown's avatar unknown
Browse files

Fix for bug #18979, bad RE in mysql-test-run.pl


mysql-test/lib/mtr_cases.pl:
  Fixed the RE so that backtracking will not occur.
parent fc1a194e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ sub collect_test_cases ($) {
      while ( <DISABLED> )
      {
        chomp;
        if ( /^\s*(\S+)\s*:\s*(.*?)\s*$/ )
        if ( /^\s*([^\s:]+)\s*:\s*(.*?)\s*$/ )
        {
          $disabled{$1}= $2;
        }