Commit d58971bc authored by unknown's avatar unknown

Bug#27753 enable mysql-test-run.pl to ignore tests based on wildcard

 - Fix problem in first implementation


mysql-test/lib/mtr_cases.pl:
  Prepend a ^ to the regex only if _all_ charactersin the pattern are normal
parent c42376b4
...@@ -32,16 +32,14 @@ my $skip_test; ...@@ -32,16 +32,14 @@ my $skip_test;
sub init_pattern { sub init_pattern {
my ($from, $what)= @_; my ($from, $what)= @_;
if ( $from =~ /[a-z0-9]/ ) { if ( $from =~ /^[a-z0-9]$/ ) {
# Does not contain any regex, make the pattern match # Does not contain any regex, make the pattern match
# beginning of string # beginning of string
$from= "^$from"; $from= "^$from";
} }
else { # Check that pattern is a valid regex
# Check that pattern is a valid regex eval { "" =~/$from/; 1 } or
eval { "" =~/$from/; 1 } or mtr_error("Invalid regex '$from' passed to $what\nPerl says: $@");
mtr_error("Invalid regex '$from' passed to $what\nPerl says: $@");
}
return $from; return $from;
} }
......
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