Commit 5107d66b authored by Steve Holme's avatar Steve Holme
Browse files

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

parent 4e1ece2e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2751,7 +2751,7 @@ sub singletest {
        my $f = $_;
        $f =~ s/\s//g;

        if($f =~ /^[^!](.*)$/) {
        if($f =~ /^([^!].*)$/) {
            # Store the feature for later
            $feature{$1} = $1;