diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2017-08-19 22:07:15 +0200 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2017-08-19 22:07:15 +0200 |
commit | b9e22e9575d72b5bb5f5f8de79ca51af96b37b54 (patch) | |
tree | 5341d4122de0ff60b55ebecbfdc4df33b0ddd866 /tests/runtests.pl | |
parent | c468c27b5a8abb8134b3f89439aaac45f37d22d7 (diff) | |
download | curl-b9e22e9575d72b5bb5f5f8de79ca51af96b37b54.tar.gz |
runtests: fixed case insensitive matching of keywords
Commit 5c2aac71 didn't work in the case of mixed-case keywords given on
the command-line.
Diffstat (limited to 'tests/runtests.pl')
-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 41f92629b..645db3939 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; |