Author: scottbw
Date: Tue Aug 24 08:31:12 2010
New Revision: 988431
URL: http://svn.apache.org/viewvc?rev=988431&view=rev
Log:
Forked the Junit Ant task to avoid overloading the JVM when running JUnit tests
Modified:
incubator/wookie/trunk/build.xml
Modified: incubator/wookie/trunk/build.xml
URL:
http://svn.apache.org/viewvc/incubator/wookie/trunk/build.xml?rev=988431&r1=988430&r2=988431&view=diff
==============================================================================
--- incubator/wookie/trunk/build.xml (original)
+++ incubator/wookie/trunk/build.xml Tue Aug 24 08:31:12 2010
@@ -279,7 +279,7 @@
<target name="post-compile-test">
<!-- run unit tests, (skip functional and integration tests) -->
- <junit printsummary="true" haltonfailure="true">
+ <junit fork="yes" forkmode="once" printsummary="true" haltonfailure="true">
<formatter type="brief" usefile="false"/>
<classpath>
<path location="${project.build.classes.test.dir}" />