buildframework/helium/sf/java/logging/tests/stages_config.ant.xml
changeset 587 85df38eb4012
child 628 7c4a911dc066
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildframework/helium/sf/java/logging/tests/stages_config.ant.xml	Tue Apr 27 08:33:08 2010 +0300
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+============================================================================ 
+Name        : stages_config.xml 
+Part of     : Helium 
+
+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="stages-config" xmlns:hlm="http://www.nokia.com/helium">
+    <description>
+    Definitions of helium stages. 
+    </description>
+    
+    <taskdef resource="com/nokia/helium/logger/ant/antlib.xml" uri="http://www.nokia.com/helium" />
+    
+    <dirname property="logging.test.project.dir" file="${ant.file.stages-config}" />
+    
+    <hlm:stagesummary id="stage.summary" template="${logging.test.project.dir}\build_stages_summary.txt.ftl" />
+
+    <hlm:stage id="preparation" starttarget="hello-test" endtarget="hello-test"/>
+    <hlm:stage id="compile" starttarget="compile" endtarget="compile"/>
+    <hlm:stage id="post" starttarget="prep-ccm-get-input" endtarget="prep-ccm-get-input"/>
+    <hlm:stage id="startend" starttarget="start" endtarget="end"/>
+    <hlm:stage id="paralleltest" starttarget="paratest" endtarget="paratest"/>
+    
+    <hlm:stagerecord id="record.default" defaultoutput="${build.log.dir}/${build.id}_main.ant.log" loglevel="info" append="false"/>
+    
+    <hlm:stagerecord id="record.prep"  stagerefid="preparation" output="${build.log.dir}/${build.id}_prep.ant.log" loglevel="info" append="false"/>
+    
+    <hlm:stagerecord id="record.compile"  stagerefid="compile" output="${build.log.dir}/${build.id}_compile.ant.log" loglevel="info" append="false"/>
+    
+    <hlm:stagerecord id="record.post"  stagerefid="post" output="${build.log.dir}/${build.id}_post.ant.log" loglevel="info" append="false"/>
+    
+    <hlm:stagerecord id="record.startend"  stagerefid="startend" output="${build.log.dir}/${build.id}_startend.ant.log" loglevel="info" append="false"/>
+    
+    <hlm:stagerecord id="record.paralleltest"  stagerefid="paralleltest" output="${build.log.dir}/${build.id}_paralleltest.ant.log" loglevel="info" append="false"/>
+    
+    
+</project>