From: Dan Fandrich Date: Sat, 19 Aug 2017 20:07:15 +0000 (+0200) Subject: runtests: fixed case insensitive matching of keywords X-Git-Tag: curl-7_56_0~216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b9e22e9575d72b5bb5f5f8de79ca51af96b37b54;p=thirdparty%2Fcurl.git runtests: fixed case insensitive matching of keywords Commit 5c2aac71 didn't work in the case of mixed-case keywords given on the command-line. --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 41f92629be..645db3939c 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -5379,7 +5379,7 @@ EOHELP $disabled{$1}=$1; } elsif($ARGV[0] =~ /^!(.+)/) { - $disabled_keywords{$1}=$1; + $disabled_keywords{lc($1)}=$1; } elsif($ARGV[0] =~ /^([-[{a-zA-Z].*)/) { $enabled_keywords{lc($1)}=$1;