File: asmifier.xml

package info (click to toggle)
asm3 3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,180 kB
  • ctags: 3,898
  • sloc: java: 37,049; xml: 1,814; makefile: 44
file content (26 lines) | stat: -rw-r--r-- 861 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<project name="conform" default="test">

  <target name="test">
    <condition property="testclasses" value="${asm.test.class}">
      <not><equals arg1="${asm.test.class}" arg2=""/></not>
    </condition>
    <condition property="testclasses" value="java.lang">
      <equals arg1="${asm.test.class}" arg2=""/>
    </condition>
    <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=${testclasses}"/>
    </junit>  
  </target>

</project>