blob: a11ccbc11695f6e2c436c9a24fe89b5011774aae [file] [log] [blame]
<?xml version='1.0'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="antunit" default="all"
xmlns:au="antlib:org.apache.ant.antunit"
xmlns:rat="antlib:org.apache.rat.anttasks">
<taskdef uri="antlib:org.apache.ant.antunit"
resource="org/apache/ant/antunit/antlib.xml"
classpath="${test.classpath}"/>
<taskdef uri="antlib:org.apache.rat.anttasks"
resource="org/apache/rat/anttasks/antlib.xml"
classpath="${test.classpath}"/>
<condition property="tests.running">
<not><equals arg1="${tests.skipped}" arg2="true"/></not>
</condition>
<target name="all" if="tests.running">
<echo>Invoking antunit on ${antunit.file}</echo>
<mkdir dir="${temp.dir}"/>
<au:antunit failonerror="true">
<file file="${antunit.file}"/>
<au:plainlistener sendLogTo="file" toDir="${temp.dir}" logLevel="info"/>
<propertyset>
<propertyref name="test.classpath"/>
<propertyref name="temp.dir"/>
</propertyset>
</au:antunit>
</target>
</project>