File: asmifier.xml

package info (click to toggle)
asm2 2.2.3-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,548 kB
  • ctags: 2,786
  • sloc: java: 22,655; xml: 1,218; makefile: 32
file content (20 lines) | stat: -rw-r--r-- 619 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<project name="conform" default="test">

  <target name="test">
    <junit fork="yes" 
           printsummary="yes"
           errorproperty="test.failed"
           failureproperty="test.failed">
      <batchtest fork="yes" todir="${out.test}/reports">
        <fileset dir="${test}/conform">
          <include name="**/ASMifierTest.java"/>
        </fileset>
      </batchtest>
      <formatter type="xml"/>
      <classpath refid="test.classpath"/>
      <jvmarg value="-Dasm.test=${asm.test}"/>
      <jvmarg value="-Dasm.test.class=${asm.test.class}"/>
    </junit>  
  </target>

</project>