Commit 5f43b860 authored by igreenhoe@mysql.com's avatar igreenhoe@mysql.com

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

parent 030c1705
...@@ -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