test-unit target, since qa-functional tests do not seem to be working anyway.
authorJesse Glick <jglick@netbeans.org>
Wed, 23 Mar 2011 19:21:24 -0400
changeset 32172540603be3e6
parent 3216 d7c7ebb537ee
child 3218 a878176fd52d
test-unit target, since qa-functional tests do not seem to be working anyway.
build.xml
     1.1 --- a/build.xml	Wed Mar 23 19:20:02 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>