summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2021-03-05 14:12:35 +0200
committerMonty <monty@mariadb.org>2021-03-05 14:12:56 +0200
commitecc1cd219d427e62acbd37c4c02e1f99d6c2d769 (patch)
treede7222db05fc639fc11c45b13b5985a923e163e3
parentbcd160753cb0066cc25f262a668e197c1e22b636 (diff)
downloadmariadb-git-ecc1cd219d427e62acbd37c4c02e1f99d6c2d769.tar.gz
Fixed that unit.pcre_test works again.
-rw-r--r--mysql-test/suite/unit/suite.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/unit/suite.pm b/mysql-test/suite/unit/suite.pm
index 43c9e115de6..53f8923777a 100644
--- a/mysql-test/suite/unit/suite.pm
+++ b/mysql-test/suite/unit/suite.pm
@@ -48,10 +48,10 @@ sub start_test {
my ($command, %tests, $prefix);
for (@ctest_list) {
chomp;
- if (/^\d+: Test command: +([^ \t]+)/) {
+ if (/^\d+: Test command: +([^ \t]+.*)/) {
$command= $1;
$prefix= /libmariadb/ ? 'conc_' : '';
- } elsif (/^ +Test +#\d+: ([^ \t]+)/) {
+ } elsif (/^ +Test +#\d+: ([^ \t]+.*)/) {
if ($command ne "NOT_AVAILABLE" && $command ne "/bin/sh") {
$tests{$prefix.$1}=$command;
}