Added a Junit test target to buildfile
authorwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Tue, 4 Jun 2002 20:34:07 +0000 (20:34 +0000)
committerwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Tue, 4 Jun 2002 20:34:07 +0000 (20:34 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@27 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

build.xml

index a5265c0..65e9dae 100755 (executable)
--- a/build.xml
+++ b/build.xml
        <target name="clean-dist">
                <delete dir="${dist}"/>
        </target>
+       
+       <target name="test" depends="test-common" />
+       <target name="test-common" depends="compile">
+               <junit printsummary="yes" fork="no" haltonfailure="yes" haltonerror="no">
+                       <classpath refid="build.path"/>
+                       <formatter type="plain" />
+                       <test name="edu.internet2.middleware.shibboleth.common.AQHTest" />
+               </junit>
+       </target>
+       
 
 </project>