You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2011/04/04 05:06:39 UTC

svn commit: r1088467 - in /tomcat/trunk: build.properties.default build.xml

Author: kkolinko
Date: Mon Apr  4 03:06:39 2011
New Revision: 1088467

URL: http://svn.apache.org/viewvc?rev=1088467&view=rev
Log:
Try a workaround against TC7 tests running too slow on Gump:
a workaround against Oracle JVM bug 6202721

Modified:
    tomcat/trunk/build.properties.default
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.properties.default
URL: http://svn.apache.org/viewvc/tomcat/trunk/build.properties.default?rev=1088467&r1=1088466&r2=1088467&view=diff
==============================================================================
--- tomcat/trunk/build.properties.default (original)
+++ tomcat/trunk/build.properties.default Mon Apr  4 03:06:39 2011
@@ -40,6 +40,9 @@ execute.test.nio=true
 execute.test.apr=true
 test.haltonfailure=false
 
+# Workaround against http://bugs.sun.com/view_bug.do?bug_id=6202721
+test.jvmarg.egd=-Djava.security.egd=file:/dev/./urandom
+
 # ----- Default Base Path for Dependent Packages -----
 # Please note this path must be absolute, not relative,
 # as it is referenced with different working directory

Modified: tomcat/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1088467&r1=1088466&r2=1088467&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Mon Apr  4 03:06:39 2011
@@ -1062,6 +1062,7 @@
     <sequential>
       <junit printsummary="yes" fork="yes" dir="." showoutput="yes">
 
+        <jvmarg value="${test.jvmarg.egd}"/>
         <jvmarg value="-Djava.library.path=${test.apr.loc}"/>
         <jvmarg value="${test.formatter}"/>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org