summaryrefslogtreecommitdiff
path: root/mysql-test/mysql-test-run.pl
diff options
context:
space:
mode:
authorBjorn Munch <Bjorn.Munch@sun.com>2009-10-09 15:16:36 +0200
committerBjorn Munch <Bjorn.Munch@sun.com>2009-10-09 15:16:36 +0200
commit052d9bef839adba497fbb2adb0d9e239a49b35f8 (patch)
tree624d01555461c3f58aefdbd6121267aa4bd9ad2a /mysql-test/mysql-test-run.pl
parent79060e12ee42295d7269368a2a2584eecbce8191 (diff)
downloadmariadb-git-052d9bef839adba497fbb2adb0d9e239a49b35f8.tar.gz
avoid regexp warning after 46625
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-xmysql-test/mysql-test-run.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl
index 1be4a8aabd3..e7785b4ac69 100755
--- a/mysql-test/mysql-test-run.pl
+++ b/mysql-test/mysql-test-run.pl
@@ -3249,7 +3249,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");
}