mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
avoid regexp warning after 46625
This commit is contained in:
commit
bdc4070aab
1 changed files with 1 additions and 1 deletions
|
@ -3257,7 +3257,7 @@ sub run_testcase ($) {
|
|||
|
||||
# Allow only alpanumerics pluss _ - + . in combination names
|
||||
my $combination= $tinfo->{combination};
|
||||
if ($combination && $combination !~ /^\w[\w-\.\+]+$/)
|
||||
if ($combination && $combination !~ /^\w[-\w\.\+]+$/)
|
||||
{
|
||||
mtr_error("Combination '$combination' contains illegal characters");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue