This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push: new 46febe0 Fix failing tests on Windows with Java 8u29x onwards 46febe0 is described below commit 46febe042a9ed32bb53fcedf28f954e3095028ad Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Apr 26 14:36:52 2021 +0100 Fix failing tests on Windows with Java 8u29x onwards --- build.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index e2f57e0..d53c4c3 100644 --- a/build.xml +++ b/build.xml @@ -194,7 +194,10 @@ <!-- Workaround against http://bugs.sun.com/view_bug.do?bug_id=6202721 --> <available file="/dev/urandom" property="test.jvmarg.egd" value="-Djava.security.egd=file:/dev/./urandom"/> - <property name="test.jvmarg.egd" value="" /> + <!-- JREs may fail to start with an empty argument so provide a dummy --> + <!-- value here for those cases, such as Windows, where no value will be --> + <!-- set above. --> + <property name="test.jvmarg.egd" value="-Dignore" /> <!-- Location of OpenSSL binary (file name, not directory) --> <!-- The OpenSSL tests cases be disabled by specifying an invalid path here --> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org