mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
Fix for bug #18979, bad RE in mysql-test-run.pl
This commit is contained in:
parent
030c170550
commit
5f43b8609a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue