gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 39/256: runtests: fixed case insensitive matching o


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 39/256: runtests: fixed case insensitive matching of keywords
Date: Fri, 06 Oct 2017 19:42:10 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit b9e22e9575d72b5bb5f5f8de79ca51af96b37b54
Author: Dan Fandrich <address@hidden>
AuthorDate: Sat Aug 19 22:07:15 2017 +0200

    runtests: fixed case insensitive matching of keywords
    
    Commit 5c2aac71 didn't work in the case of mixed-case keywords given on
    the command-line.
---
 tests/runtests.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]