build.xml
changeset 3217 2540603be3e6
parent 3209 91d0cef8937d
child 3218 a878176fd52d
     1.1 --- a/build.xml	Wed Mar 23 15:55:05 2011 -0400
     1.2 +++ b/build.xml	Wed Mar 23 19:21:24 2011 -0400
     1.3 @@ -17,4 +17,12 @@
     1.4          </downloadbinaries>
     1.5      </target>
     1.6      <target name="-init" depends="suite.-init,downloadbinaries"/>
     1.7 +    <target name="test-unit" description="Runs unit tests for all modules in the suite.">
     1.8 +        <sortsuitemodules unsortedmodules="${modules}" sortedmodulesproperty="modules.test.sorted" sorttests="true"/>
     1.9 +        <property name="continue.after.failing.tests" value="true"/> <!-- fallback -->
    1.10 +        <subant target="test-unit" buildpath="${modules.test.sorted}" inheritrefs="false" inheritall="false">
    1.11 +            <property name="cluster.path.evaluated" value="${cluster.path.evaluated}"/> <!-- Just for speed of pre-7.0 projects -->
    1.12 +            <property name="continue.after.failing.tests" value="${continue.after.failing.tests}"/>
    1.13 +        </subant>
    1.14 +    </target>
    1.15  </project>