buildframework/helium/builder/java/test-macros.ant.xml
author Bob Rosenberg <bob.rosenberg@nokia.com>
Thu, 26 Aug 2010 10:06:23 +0100
changeset 637 61e7d5b4a187
parent 587 85df38eb4012
permissions -rw-r--r--
Change bld.inf install location to /epoc32/tools/metatools. Fix format of component version number.

<?xml version="1.0"?>
<!-- 
============================================================================ 
Name        : build.xml 
Part of     : Helium AntLib

Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
All rights reserved.
This component and the accompanying materials are made available
under the terms of the License "Eclipse Public License v1.0"
which accompanies this distribution, and is available
at the URL "http://www.eclipse.org/legal/epl-v10.html".

Initial Contributors:
Nokia Corporation - initial contribution.

Contributors:

Description:

============================================================================
-->
<project name="test-macros" xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:au="antlib:org.apache.ant.antunit">
    <import file="common.ant.xml" />
  
    <path id="classpath.anlibs">
        <fileset dir="${builder.dir}/antlibs" includes="*.jar"/>
    </path>
    
    <fileset id="unittests.filetset" dir="${basedir}" includes="**/test_*.ant.xml" />

    <propertyset id="unittests.propertyset">
        <propertyref name="module.temp.dir" />
        <propertyref name="test.temp.dir" />
        <propertyref name="builder.dir" />
    </propertyset>
    
    <target name="antunit">
        <echo message="${antunit.result.dir}" />
        <mkdir dir="${antunit.result.dir}" />
        <au:antunit>
            <fileset refid="unittests.filetset" />
            <au:plainlistener logLevel="info"/>
            <au:xmllistener toDir="${antunit.result.dir}" logLevel="debug"/>
            <propertyset refid="unittests.propertyset" />
        </au:antunit>
    </target>
    <target name="unittest" depends="antunit"/>
    
</project>