From 5107d66b2ecdea003ecc8b80a7063475495ab994 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 28 Dec 2013 16:32:48 +0000 Subject: [PATCH] runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900 --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index 51082196d..f6a228c7f 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2751,7 +2751,7 @@ sub singletest { my $f = $_; $f =~ s/\s//g; - if($f =~ /^[^!](.*)$/) { + if($f =~ /^([^!].*)$/) { # Store the feature for later $feature{$1} = $1;