This is an automated email from the ASF dual-hosted git repository.

markt-asf pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 559e2669db More debug logging to aid debugging of BuildBot failure
559e2669db is described below

commit 559e2669dbbbb6bf96075f14c8a37a334968eb88
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Jun 5 08:41:03 2026 +0100

    More debug logging to aid debugging of BuildBot failure
---
 test/org/apache/coyote/http2/TestRfc9218.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/test/org/apache/coyote/http2/TestRfc9218.java 
b/test/org/apache/coyote/http2/TestRfc9218.java
index 1a6081f88c..b0ba614a8e 100644
--- a/test/org/apache/coyote/http2/TestRfc9218.java
+++ b/test/org/apache/coyote/http2/TestRfc9218.java
@@ -79,6 +79,7 @@ public class TestRfc9218 extends Http2TestBase {
         sendWindowUpdate(0, 1024);
         parser.readFrame();
         Assert.assertEquals("17-Body-1024\n", output.getTrace());
+        System.out.println(trace);
         output.clearTrace();
 
         // 17 - 6k body left
@@ -94,6 +95,7 @@ public class TestRfc9218 extends Http2TestBase {
         parser.readFrame();
 
         Assert.assertEquals("21-Body-1024\n", output.getTrace());
+        System.out.println(trace);
         output.clearTrace();
 
         // 17 - 6k body left
@@ -112,6 +114,7 @@ public class TestRfc9218 extends Http2TestBase {
         parser.readFrame();
 
         trace = output.getTrace();
+        System.out.println(trace);
         Assert.assertTrue(trace.contains("17-Body-877\n"));
         trace = trace.replace("17-Body-877\n", "");
         Assert.assertTrue(trace.contains("19-Body-1170\n"));
@@ -133,6 +136,7 @@ public class TestRfc9218 extends Http2TestBase {
         parser.readFrame();
 
         trace = output.getTrace();
+        System.out.println(trace);
         Assert.assertTrue(trace.contains("17-Body-1\n"));
         trace = trace.replace("17-Body-1\n", "");
         Assert.assertTrue(trace.contains("19-Body-1\n"));


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to