This is an automated email from the ASF dual-hosted git repository.
markt-asf pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new fba0df84f4 More debug logging to aid debugging of BuildBot failure
fba0df84f4 is described below
commit fba0df84f4dd02ef2c8a6a47fe25fc4769ba5915
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]