mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
runtests: fixed case insensitive matching of keywords
Commit 5c2aac71
didn't work in the case of mixed-case keywords given on
the command-line.
This commit is contained in:
parent
c468c27b5a
commit
b9e22e9575
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user