Commit b9e22e95 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

runtests: fixed case insensitive matching of keywords

Commit 5c2aac71 didn't work in the case of mixed-case keywords given on
the command-line.
parent c468c27b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;