aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-12-28 16:32:48 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-12-28 16:32:07 +0000
commit5107d66b2ecdea003ecc8b80a7063475495ab994 (patch)
treedef5e4237e6b2b519d6044a767f5b7b82afb86ae /tests/runtests.pl
parent4e1ece2e44f432c2614f2090155c0aaf2226ea80 (diff)
runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl2
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;