diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-12-28 16:32:48 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-12-28 16:32:07 +0000 |
commit | 5107d66b2ecdea003ecc8b80a7063475495ab994 (patch) | |
tree | def5e4237e6b2b519d6044a767f5b7b82afb86ae /tests | |
parent | 4e1ece2e44f432c2614f2090155c0aaf2226ea80 (diff) |
runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |