tests/build.xml
author vranyj1
Mon, 03 Dec 2012 22:09:19 +0000
branchdevelopment
changeset 1859 4d42d0099c74
parent 1825 2e2b62afe02f
child 1961 5fdbb226b781
permissions -rw-r--r--
Ignore tests in MemberVisibilityTests (package-private methods not yet supported)
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
1825
2e2b62afe02f Fixes for stx:libjava tests
vranyj1
parents: 1818
diff changeset
     3
<property name="dir.libs" value="../libs/java/libs"/>
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
     4
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
     5
<path id="libjava-tests.classpath">
1825
2e2b62afe02f Fixes for stx:libjava tests
vranyj1
parents: 1818
diff changeset
     6
    <fileset dir="${dir.libs}">
2e2b62afe02f Fixes for stx:libjava tests
vranyj1
parents: 1818
diff changeset
     7
        <include name="**/*.jar"/>
2e2b62afe02f Fixes for stx:libjava tests
vranyj1
parents: 1818
diff changeset
     8
    </fileset>
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
     9
</path>
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    10
1633
8c9f63f94c86 Fixed classpath according to mavenization of libs
vranyj1
parents: 1082
diff changeset
    11
     
8c9f63f94c86 Fixed classpath according to mavenization of libs
vranyj1
parents: 1082
diff changeset
    12
    
8c9f63f94c86 Fixed classpath according to mavenization of libs
vranyj1
parents: 1082
diff changeset
    13
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    14
875
cde9b4ebcdfe JK branch tagged before doing a code cleanup
vranyj1
parents: 766
diff changeset
    15
766
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    16
  <target name="build">
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    17
	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava">
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    18
	  <reference refid="libjava-tests.classpath" torefid="libjava-tests.classpath"/>
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    19
	</ant>
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    20
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    21
	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava-mauve">
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    22
965
c94b8c70a6ec Fixes for Windows builds
vranyj1
parents: 876
diff changeset
    23
	</ant>
766
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    24
  </target>
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    25
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    26
  <target name="clean">
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    27
	<subant target="clean">
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    28
	  <fileset dir="." includes="*/build.xml"/>
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    29
	</subant>
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    30
  </target>
1082
50c18252e0eb Added tomcat6 to test class path
vranyj1
parents: 965
diff changeset
    31
766
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    32
cdac19910d39 Added tests
vranyj1
parents:
diff changeset
    33
876
caad932b2f88 Removed leftover comment in build.xml
vranyj1
parents: 875
diff changeset
    34
</project>