tests/build.xml
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 25 Jan 2013 17:57:06 +0000
branchrefactoring-vmdata
changeset 2002 ef3da336a6c9
parent 1961 5fdbb226b781
child 2380 9195eccdcbd9
permissions -rw-r--r--
Merged ad1a490462ed and 1949478fd05e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
766
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
     1
<project name="tests" default="build">
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
     2
1961
5fdbb226b781 Re-added junit4x to libjava/libs.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1825
diff changeset
     3
<property name="libraries.stx.libjava" value="../java/libs"/>
5fdbb226b781 Re-added junit4x to libjava/libs.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1825
diff changeset
     4
<property name="libraries.stx.libjava.libs" value="../libs/java/libs"/>
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
     5
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
     6
<path id="libjava-tests.classpath">
1961
5fdbb226b781 Re-added junit4x to libjava/libs.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1825
diff changeset
     7
    <fileset dir="${libraries.stx.libjava}">
5fdbb226b781 Re-added junit4x to libjava/libs.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1825
diff changeset
     8
        <include name="**/*.jar"/>
5fdbb226b781 Re-added junit4x to libjava/libs.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1825
diff changeset
     9
    </fileset>
5fdbb226b781 Re-added junit4x to libjava/libs.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1825
diff changeset
    10
    <fileset dir="${libraries.stx.libjava.libs}">
1825
2e2b62afe02f Fixes for stx:libjava tests
vranyj1
parents: 1818
diff changeset
    11
        <include name="**/*.jar"/>
2e2b62afe02f Fixes for stx:libjava tests
vranyj1
parents: 1818
diff changeset
    12
    </fileset>
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    13
</path>
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    14
766
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    15
  <target name="build">
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    16
	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava">
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    17
	  <reference refid="libjava-tests.classpath" torefid="libjava-tests.classpath"/>
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    18
	</ant>
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    19
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    20
	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava-mauve">
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    21
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    22
	</ant>
766
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    23
  </target>
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    24
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    25
  <target name="clean">
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    26
	<subant target="clean">
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    27
	  <fileset dir="." includes="*/build.xml"/>
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    28
	</subant>
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    29
  </target>
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    30
766
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    31
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    32
876
caad932b2f88 Removed leftover comment in build.xml
vranyj1
parents: 875
diff changeset
    33
</project>