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

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


The following commit(s) were added to refs/heads/11.0.x by this push:
     new 3279eb39ef Additional debug (failure observed on Windows)
3279eb39ef is described below

commit 3279eb39efc50febce4bb55c2d24f776917c2387
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Jun 19 15:53:52 2026 +0100

    Additional debug (failure observed on Windows)
---
 test/org/apache/catalina/util/TestServerInfo.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/org/apache/catalina/util/TestServerInfo.java 
b/test/org/apache/catalina/util/TestServerInfo.java
index ee8a3c78f0..3c35308869 100644
--- a/test/org/apache/catalina/util/TestServerInfo.java
+++ b/test/org/apache/catalina/util/TestServerInfo.java
@@ -297,13 +297,13 @@ public class TestServerInfo {
             if (line.contains("APR Version:")) {
                 foundAprVersion = true;
                 // APR version should be in format like "1.7.0"
-                Assert.assertTrue("APR Version line should contain version 
number",
+                Assert.assertTrue("APR Version line should contain version 
number\n" + output,
                         line.matches(".*APR Version:\\s+\\d+\\.\\d+.*"));
             }
             if (line.contains("Tomcat Native:")) {
                 foundTcnVersion = true;
                 // Tomcat Native version should be in format like "2.0.5"
-                Assert.assertTrue("Tomcat Native line should contain version 
number",
+                Assert.assertTrue("Tomcat Native line should contain version 
number\n" + output,
                         line.matches(".*Tomcat Native:\\s+\\d+\\.\\d+.*"));
             }
         }


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

Reply via email to