Eric, this trivial patch should ensure that Ant's <junit> crud can't be
fouled up by our <parallel> testing. Can you review, please?
Index: common.ant.xml
===================================================================
--- common.ant.xml (revision 5572)
+++ common.ant.xml (working copy)
@@ -178,7 +178,8 @@
<mkdir dir="@{test.reports}" />
<echo message="${javac.out} ${javac.junit.out}" />
- <junit dir="@{test.out}" fork="yes" printsummary="yes"
failureproperty="junit.failure" >
+ <junit dir="@{test.out}" fork="yes" printsummary="yes"
+ failureproperty="junit.failure" tempdir="@{test.out}" >
<jvmarg line="${junit.platform.args}" />
<jvmarg line="-Xmx768m" />
<sysproperty key="gwt.args" value="${junit.notheadless.arg}
@{test.args}" />
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---