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="**/StackMapTableAttributeTest.java"/>
     11           <include name="**/ASMStackMapTableAttributeTest.java"/>
     12         </fileset>
     13       </batchtest>
     14       <formatter type="xml"/>
     15       <classpath refid="test.classpath"/>
     16       <jvmarg value="-Dasm.test=${asm.test}"/>
     17       <jvmarg value="-Dasm.test.class=${asm.test.class}"/>
     18       <assertions>
     19 	<enable/>
     20       </assertions>
     21     </junit>  
     22   </target>
     23 
     24 </project>
     25