[Privoxy-commits] [privoxy] 10/19: gen-skip-reasons.pl: Skip test 1 due to multiple Connection header values
User Git
git at git.privoxy.org
Mon Mar 16 07:54:58 CET 2026
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit addb1f93335d8787f3d89df975c886ab4c90945a
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu Mar 12 11:32:04 2026 +0100
gen-skip-reasons.pl: Skip test 1 due to multiple Connection header values
---
tests/cts/gen-skip-reasons.pl | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/tests/cts/gen-skip-reasons.pl b/tests/cts/gen-skip-reasons.pl
index 3ce18dce..74ef75ec 100755
--- a/tests/cts/gen-skip-reasons.pl
+++ b/tests/cts/gen-skip-reasons.pl
@@ -7,7 +7,7 @@
# Generates an exclude file that can be passed to runtests.pl to skip certain
# tests that aren't expected to work when run through Privoxy.
#
-# Copyright (c) 2012-2025 Fabian Keil <fk at fabiankeil.de>
+# Copyright (c) 2012-2026 Fabian Keil <fk at fabiankeil.de>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
@@ -30,7 +30,9 @@ sub main() {
for my $testnum (1..3500) {
my $why;
- if ($testnum eq 2) {
+ if ($testnum eq 1) {
+ $why = "Expected to fail. Multiple values in Connection header that get removed by Privoxy.";
+ } elsif ($testnum eq 2) {
$why = "Expected to fail. Missing space after status code that gets added by Privoxy.";
} elsif ($testnum eq 8) {
$why = "Expected to fail. Tab in cookie that Privoxy converts to a space which the test does not expect.";
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list