> On 2025 Feb 4, at 20:42, Igal Sapir <[email protected]> wrote:
>
> Rainer,
>
> On Tue, Feb 4, 2025 at 5:50 PM Rainer Jung <[email protected]> wrote:
>
>> Am 04.02.25 um 19:35 schrieb Mark Thomas:
>>> The proposed Apache Tomcat 11.0.3 release is now available for voting.
>> <snip/>
>>
>> I see occasional OutOfMemoryErrors in org.apache.tomcat.util.net.TestSsl:
<snip>
>> Test currently run with Java 17.0.14, and fail for several vendors and
>> for JSSE and also tcnative, OpenSSL versions 3.0 to 3.4 but now always.
>>
>> JVM size is 256MB.
>
> Is there a reason you set such a strict limit on the memory?
Didn’t Mark limit test JVMs to 256m in a recent commit:
diff --git a/build.xml b/build.xml
index f47b137d1c..bdb0b0cf7a 100644
--- a/build.xml
+++ b/build.xml
@@ -2043,7 +2043,8 @@
errorproperty="test.result.error"
failureproperty="test.result.failure"
haltonfailure="${test.haltonfailure}"
- threads="${test.threads}">
+ threads="${test.threads}"
+ maxmemory="256m">
<jvmarg value="${test.jvmarg.egd}"/>
<jvmarg value="-Dfile.encoding=UTF-8"/>
- Chuck