[Privoxy-commits] [privoxy] 06/17: gen-skip-reasons.pl: Skip curl test 500
User Git
git at git.privoxy.org
Wed Dec 10 08:04:31 CET 2025
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 2299457eb885a575e3505aa7de32975cb6e90822
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sun Dec 7 15:06:23 2025 +0100
gen-skip-reasons.pl: Skip curl test 500
... which fails when curl has been build with TrackMemory suppport.
Using a proxy results in 'TOO MANY ALLOCS'.
---
tests/cts/gen-skip-reasons.pl | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/cts/gen-skip-reasons.pl b/tests/cts/gen-skip-reasons.pl
index c290fe9b..235ddfb6 100755
--- a/tests/cts/gen-skip-reasons.pl
+++ b/tests/cts/gen-skip-reasons.pl
@@ -99,6 +99,8 @@ sub main() {
$why = "Expected to fail. Privoxy adds a 'Host' header.";
} elsif ($testnum eq 471 or $testnum eq 1704) {
$why = "Expected to fail. Uses HTTP/2 which Privoxy does not support.";
+ } elsif ($testnum eq 500) {
+ $why = "Known to fail when curl has been build with TrackMemory suppport. Proxy use results in 'TOO MANY ALLOCS'.";
} elsif ($testnum eq 507) {
$why = "Expected to fail. DNS failures cause a Privoxy error message the test doesn't handle.";
} elsif ($testnum eq 501) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list