This is an automated email from the ASF dual-hosted git repository.
remm 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 e77c620764 Add info about missing httpd modules
e77c620764 is described below
commit e77c6207649489f98e001213ae2d4a84dd7b527c
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]