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

remm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
     new 6679a95b18 Add info about missing httpd modules
6679a95b18 is described below

commit 6679a95b18793fbfe387de22a7bcb0e5c24b0d62
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 f54c2d7cee..fd488857b4 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