From: Steve Holme Date: Sat, 28 Dec 2013 16:32:48 +0000 (+0000) Subject: runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900 X-Git-Tag: curl-7_35_0~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5107d66b2ecdea003ecc8b80a7063475495ab994;p=curl runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900 --- 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;