File: all.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 (21 lines) | stat: -rw-r--r-- 747 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
21
<project name="perf" default="test">
  <target name="test">
    <java classname="org.objectweb.asm.ALLPerfTest" fork="yes">
      <classpath>
        <pathelement location="${out.build}"/>
        <pathelement location="${out.test}"/>
        <fileset dir="${test}">
          <include name="lib/bcel.jar"/>
          <include name="lib/serp.jar"/>
          <include name="lib/javassist.jar"/>
          <!-- xslt engines -->
          <include name="lib/jd.xslt-1.5.5.jar"/>
          <include name="lib/saxon7.jar"/>
          <include name="lib/xalan-2.6.0.jar"/>
        </fileset>
      </classpath>
      <arg value="${out.test}/"/>
      <arg value="${java.home}/../lib/tools.jar"/>
    </java>
  </target>
</project>