- Normalize whitespace in directives.
authorFabian Keil <fk@fabiankeil.de>
Fri, 21 Mar 2008 13:00:37 +0000 (13:00 +0000)
committerFabian Keil <fk@fabiankeil.de>
Fri, 21 Mar 2008 13:00:37 +0000 (13:00 +0000)
- Ignore directives without values.

tools/privoxy-regression-test.pl

index 7bf82c1..a89c644 100755 (executable)
@@ -7,7 +7,7 @@
 # A regression test "framework" for Privoxy. For documentation see:
 # perldoc privoxy-regression-test.pl
 #
-# $Id: privoxy-regression-test.pl,v 1.118 2008/03/19 16:15:45 fk Exp $
+# $Id: privoxy-regression-test.pl,v 1.119 2008/03/21 12:56:20 fk Exp $
 #
 # Wish list:
 #
@@ -214,12 +214,14 @@ sub tokenize ($) {
     s@&amp;@&@g;
 
     # Tokenize
-    if (/^\#\s*([^=:]*?)\s*[=]\s*(.*?)\s*$/) {
+    if (/^\#\s*([^=:]*?)\s*[=]\s*(.+?)\s*$/) {
 
         $token = $1;
-        $token =~ tr/[A-Z]/[a-z]/;
         $value = $2;
 
+        $token =~ s@\s\s+@ @g;
+        $token =~ tr/[A-Z]/[a-z]/;
+
     } elsif (/^TAG\s*:(.*)$/) {
 
         $token = 'tag';