buildframework/helium/builder/java/test-macros.ant.xml
author jjkang
Wed, 30 Jun 2010 16:14:56 +0800
changeset 608 690cd13b97a9
parent 587 85df38eb4012
permissions -rw-r--r--
Minor change: remove old release-notes.txt from raptor

<?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>