tests/build.xml
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 21 Jan 2015 13:46:41 +0100
changeset 3337 fd5013aca049
parent 3336 08a79331ec58
child 4012 117835eb9839
permissions -rw-r--r--
Repository cleanup (6/7): moved Mauve test suite under stx:libjava/tests

<project name="tests" default="build">

<property name="libraries.stx.libjava" value="../java/libs"/>
<property name="libraries.stx.libjava.libs" value="../libs/java/libs"/>

<path id="libjava-tests.classpath">
    <fileset dir="${libraries.stx.libjava}">
        <include name="**/*.jar"/>
    </fileset>
    <fileset dir="${libraries.stx.libjava.libs}">
        <include name="**/*.jar"/>
    </fileset>
</path>

  <target name="build">
	<ant antfile="build.xml" target="build" inheritRefs="false" dir="java">
	  <reference refid="libjava-tests.classpath" torefid="libjava-tests.classpath"/>
	</ant>

	<ant antfile="build.xml" target="build" inheritRefs="false" dir="mauve/java">

	</ant>
  </target>

  <target name="clean">
	<ant antfile="build.xml" target="clean" inheritRefs="false" dir="java">
          <reference refid="libjava-tests.classpath" torefid="libjava-tests.classpath"/>
        </ant>

        <ant antfile="build.xml" target="clean" inheritRefs="false" dir="mauve/java">

        </ant>

  </target>



</project>