runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900
authorSteve Holme <steve_holme@hotmail.com>
Sat, 28 Dec 2013 16:32:48 +0000 (16:32 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 28 Dec 2013 16:32:07 +0000 (16:32 +0000)
tests/runtests.pl

index 5108219..f6a228c 100755 (executable)
@@ -2751,7 +2751,7 @@ sub singletest {
         my $f = $_;
         $f =~ s/\s//g;
 
-        if($f =~ /^[^!](.*)$/) {
+        if($f =~ /^([^!].*)$/) {
             # Store the feature for later
             $feature{$1} = $1;