I believe it comes from https://httpd.apache.org/test/

svn checkout http://svn.apache.org/repos/asf/httpd/test/framework/trunk/
httpd-framework

And there is this interesting commit:
"""
r1925450 | jorton | 2025-05-07 04:11:17 -0300 (Wed, 07 May 2025) | 5 lines

Be more flexible about HTML body content since libxml2 behaviour
has changed across versions.

See: https://lists.apache.org/thread/1gzcqm2mo4osrc8vvc0j6jmx8q70plvf
"""

Which corresponds to:
$ svn diff -c 1925450
Index: t/apache/pr64339.t
===================================================================
--- t/apache/pr64339.t  (revision 1925449)
+++ t/apache/pr64339.t  (revision 1925450)
@@ -18,7 +18,7 @@
     ['/doc.notxml', "application/notreallyxml", "f\xf3\xf3\n" ],
 
     # Sent with charset=ISO-8859-1 - should be transformed to utf-8
-    ['/doc.isohtml', "text/html;charset=utf-8", 
"<html><body><p>fóó\n</p></body></html>" ],
+    ['/doc.isohtml', "text/html;charset=utf-8", 
"<html><body>.*fóó\n.*</body></html>" ],
 );
 
 # mod_xml2enc on trunk behaves quite differently to the 2.4.x version
@@ -42,5 +42,5 @@
     
     ok t_cmp($r->code, 200, "fetching ".$t->[0]);
     ok t_cmp($r->header('Content-Type'), $t->[1], "content-type header test 
for ".$t->[0]);
-    ok t_cmp($r->content, $t->[2], "content test for ".$t->[0]);
+    ok t_cmp($r->content, qr/$t->[2]/, "content test for ".$t->[0]);
 }



** Tags added: bite-size

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2112429

Title:
  [questing] [autopkgtest] Apache2 2.4.63-1ubuntu2 fails d/perl-
  framework test suites, thus fails autopkgtests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/2112429/+subscriptions


-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to