buildframework/helium/sf/java/logging/tests/antunit/run-scenario.ant.xml
author lorewang
Wed, 01 Dec 2010 16:05:36 +0800
changeset 715 e0739b8406dd
parent 645 b8d81fa19e7d
permissions -rw-r--r--
Specify extenal tool with path

<?xml version="1.0" encoding="UTF-8"?>
<!-- 
============================================================================ 
Name        : test_signaltask.ant.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="run-scenario" xmlns:ac="antlib:net.sf.antcontrib" xmlns:au="antlib:org.apache.ant.antunit">
   <description>Helium Antlib logger macro.</description>

   <target name="setUp">
       <tempfile property="temp.dir" suffix=".dir" />
       <mkdir dir="${temp.dir}" />
       <echo>--------------------------------------------</echo>
   </target>
    
   <target name="tearDown">
       <echo>--------------------------------------------</echo>
       <delete dir="${temp.dir}" />
   </target>
    
   <macrodef name="runScenario">
       <attribute name="scenario" />
       <attribute name="target" />
       <sequential>
           <exec osfamily="windows" executable="cmd" dir="${ant.file.run-scenario}/../../scenarii/@{scenario}" failonerror="true">
               <env key="ANT_ARGS" value="${env.ANT_ARGS} -listener com.nokia.helium.logger.ant.listener.CommonListener" />
               <arg line="/c ..\build.bat @{target}" />
               <arg value="-Dant.executor.class=com.nokia.helium.core.ant.HeliumExecutor" />
               <arg value="-Dtemp.dir=${temp.dir}" />
           </exec>
           <exec osfamily="unix" executable="../bld.sh" dir="${ant.file.run-scenario}/../../scenarii/@{scenario}" failonerror="true">
               <env key="ANT_ARGS" value="${env.ANT_ARGS} -listener com.nokia.helium.logger.ant.listener.CommonListener" />
               <arg line="@{target}" />
               <arg value="-Dant.executor.class=com.nokia.helium.core.ant.HeliumExecutor" />
               <arg value="-Dtemp.dir=${temp.dir}" />
           </exec>
       </sequential>
   </macrodef>

</project>