Skip to content

Commit b34e1a7

Browse files
committed
Increase Java runtime stack size when running tests.
This prevents spurious errors in the YUI test suite on Java implementations with a small default stack size. Fixes: #136
1 parent ff165a2 commit b34e1a7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

build.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
<!-- run tests on the command line -->
8888
<target name="test" depends="lint,build.all">
8989
<apply executable="java" failonerror="true">
90+
<arg line="-Xss16M"/>
9091
<fileset dir="${tests.dir}" includes="**/*.js"/>
9192
<arg line="-jar"/>
9293
<arg path="${lib.dir}/js.jar"/>

0 commit comments

Comments
 (0)