runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900

This commit is contained in:
Steve Holme 2013-12-28 16:32:48 +00:00
parent 4e1ece2e44
commit 5107d66b2e

View File

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