projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7093b10
)
Reject unknown dependencies.
author
Fabian Keil
<fk@fabiankeil.de>
Wed, 27 May 2009 20:46:25 +0000
(20:46 +0000)
committer
Fabian Keil
<fk@fabiankeil.de>
Wed, 27 May 2009 20:46:25 +0000
(20:46 +0000)
tools/privoxy-regression-test.pl
patch
|
blob
|
history
diff --git
a/tools/privoxy-regression-test.pl
b/tools/privoxy-regression-test.pl
index
920b218
..
7a20e44
100755
(executable)
--- a/
tools/privoxy-regression-test.pl
+++ b/
tools/privoxy-regression-test.pl
@@
-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.176 2009/05/27 20:26:59 fk Exp
fk
$
+# $Id: privoxy-regression-test.pl,v 1.176 2009/05/27 20:26:59 fk Exp $
#
# Wish list:
#
@@
-622,6
+622,10
@@
sub register_dependency ($$) {
} elsif ($dependency =~ /feature status\s+(.*)/) {
$dependencies{$level}{'feature status'} = $1;
+
+ } else {
+
+ l(LL_ERROR, "Didn't recognize dependency: $dependency.");
}
}