From ecc1cd219d427e62acbd37c4c02e1f99d6c2d769 Mon Sep 17 00:00:00 2001 From: Monty Date: Fri, 5 Mar 2021 14:12:35 +0200 Subject: [PATCH] Fixed that unit.pcre_test works again. --- mysql-test/suite/unit/suite.pm | 4 ++-- 1 file 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; }