mirror of
https://github.com/curl/curl.git
synced 2026-08-15 12:03:48 +03: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue