Commit 34c08652 authored by unknown's avatar unknown

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
...@@ -116,7 +116,7 @@ sub collect_test_cases ($) { ...@@ -116,7 +116,7 @@ sub collect_test_cases ($) {
while ( <DISABLED> ) while ( <DISABLED> )
{ {
chomp; chomp;
if ( /^\s*(\S+)\s*:\s*(.*?)\s*$/ ) if ( /^\s*([^\s:]+)\s*:\s*(.*?)\s*$/ )
{ {
$disabled{$1}= $2; $disabled{$1}= $2;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment