Home | History | Annotate | Download | only in conform
      1 <project name="conform" default="test">
      2 
      3   <target name="test">
      4     <junit fork="yes" 
      5            printsummary="yes"
      6            errorproperty="test.failed"
      7            failureproperty="test.failed">
      8       <batchtest fork="yes" todir="${out.test}/reports">
      9         <fileset dir="${test}/conform">
     10           <include name="**/GASMifierTest.java"/>
     11         </fileset>
     12       </batchtest>
     13       <formatter type="xml"/>
     14       <classpath refid="test.classpath"/>
     15       <jvmarg value="-Dasm.test=${asm.test}"/>
     16       <jvmarg value="-Dasm.test.class=${asm.test.class}"/>
     17       <assertions>
     18 	<enable/>
     19       </assertions>
     20     </junit>  
     21   </target>
     22 
     23 </project>
     24