From: <pj...@us...> - 2009-05-29 02:42:23
|
Revision: 6419 http://jython.svn.sourceforge.net/jython/?rev=6419&view=rev Author: pjenvey Date: 2009-05-29 02:42:15 +0000 (Fri, 29 May 2009) Log Message: ----------- bump stack size on Windows to 1152k, the minimum needed for test_marshal Modified Paths: -------------- trunk/jython/src/shell/jython.bat Modified: trunk/jython/src/shell/jython.bat =================================================================== --- trunk/jython/src/shell/jython.bat 2009-05-29 02:34:44 UTC (rev 6418) +++ trunk/jython/src/shell/jython.bat 2009-05-29 02:42:15 UTC (rev 6419) @@ -77,7 +77,9 @@ :run set _JAVA_MEM=-Xmx512m -set _JAVA_STACK=-Xss512k +rem 1152k is the minimum for test_marshal to pass. Windows' default is +rem apparently 1M, anyway +set _JAVA_STACK=-Xss1152k rem Escape any quotes. Use _S for ', _D for ", and _U to escape _ itself. rem We have to escape _ itself, otherwise file names with _S and _D This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |