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

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

commit 525c3d9e7855a62594ef0dcef4b09243c8fe9195
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