Added auto-startup of ATS4 Engine
authorMaciej Seroka <maciejs@symbian.org>
Wed, 16 Jun 2010 13:25:59 +0100
changeset 1096 7e7420e7272c
parent 1095 ba7030efb4da
child 1104 9e4e5aee4e8c
child 1120 cb4c228f2484
Added auto-startup of ATS4 Engine
common/build.test.xml
--- a/common/build.test.xml	Wed Jun 16 11:54:52 2010 +0100
+++ b/common/build.test.xml	Wed Jun 16 13:25:59 2010 +0100
@@ -223,11 +223,31 @@
         <if><equals arg1="${sf.spec.ats.version}" arg2="ats4"/>
             <then>
                 <forget>
-                    <exec executable="startAgent.cmd" dir="${ats.drive}" failonerror="false">
+                    <exec executable="cmd" dir="${ats.drive}" failonerror="true">
+                        <arg value="/c"/>
+                        <arg value="start"/>
+                        <arg value='"ATS4 Agent"'/>
+                        <arg value="/D"/>
+                        <arg value="."/>
+                        <arg value="/MAX"/>
+                        <arg value="startAgent.cmd"/>
                     </exec>
                 </forget>
                 <echo message="Waiting for 10 seconds for the ATS4 Agent(s) to start......."/>
                 <sleep seconds="10"/>
+                <forget>
+                    <exec executable="cmd" dir="${ats.drive}" failonerror="true">
+                        <arg value="/c"/>
+                        <arg value="start"/>
+                        <arg value='"ATS4 Engine"'/>
+                        <arg value="/D"/>
+                        <arg value="."/>
+                        <arg value="/MAX"/>
+                        <arg value="startEngine.cmd"/>
+                    </exec>
+                </forget>
+                <echo message="Waiting for 10 seconds for the ATS4 Engine to start......."/>
+                <sleep seconds="10"/>
             </then>
         </if>
     </target>