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

remm 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 036c623e3a Add info about missing httpd modules
036c623e3a is described below

commit 036c623e3a249b6010a4f8cb0d1ee36fba9a5d65
Author: remm <[email protected]>
AuthorDate: Fri Feb 27 14:02:48 2026 +0100

    Add info about missing httpd modules
    
    Although not very pretty, logging which module is missing for the test
    to run seems useful.
---
 test/org/apache/tomcat/integration/httpd/HttpdIntegrationBaseTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/test/org/apache/tomcat/integration/httpd/HttpdIntegrationBaseTest.java 
b/test/org/apache/tomcat/integration/httpd/HttpdIntegrationBaseTest.java
index 86441eb737..90f190f32d 100644
--- a/test/org/apache/tomcat/integration/httpd/HttpdIntegrationBaseTest.java
+++ b/test/org/apache/tomcat/integration/httpd/HttpdIntegrationBaseTest.java
@@ -136,7 +136,7 @@ public abstract class HttpdIntegrationBaseTest extends 
TomcatBaseTest {
             httpd = null;
         } catch (IllegalStateException ise) {
             httpd = null;
-            Assume.assumeFalse("Required httpd module not available", 
ise.getMessage() != null && ise.getMessage().contains("Cannot load modules"));
+            Assume.assumeFalse("Required httpd module not available: " + 
ise.getMessage(), ise.getMessage() != null && ise.getMessage().contains("Cannot 
load modules"));
             throw ise;
         }
     }


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

Reply via email to