Changing 'fork' to false for unit tests; seems to work still; runs 5x faster end-to-end
diff --git a/build-test.xml b/build-test.xml
index 8197074..a32195a 100644
--- a/build-test.xml
+++ b/build-test.xml
@@ -95,12 +95,9 @@
<target name="test.run" depends="test.compile">
<!-- showoutput 'yes' to allow outputting debug msgs... -->
- <!-- 09-Apr-2010, tatu: Looks like we must fork, otherwise there may be
- issues with junit version?
- -->
- <junit fork="yes" printsummary="yes" haltonfailure="no"
+ <junit fork="no" printsummary="yes" haltonfailure="no"
showoutput="yes">
- <batchtest fork="yes" todir="${dir.test.xmlresults}">
+ <batchtest fork="no" todir="${dir.test.xmlresults}">
<fileset dir="${dir.test.classes}">
<!-- Need to exclude inner classes... -->
<exclude name="**/*$*.class"/>