common/smoketest/smoke_test.ant.xml
author dario
Wed, 13 May 2009 13:59:56 +0100
changeset 186 1b428f25477e
permissions -rw-r--r--
First drop of smoketest support

<?xml version="1.0" encoding="UTF-8"?>
<project name="SF-SMOKE-TEST">

  <target name="sf-smoke-test">
    <echo>[SF-SMOKE-TEST]</echo>
    
    <exec executable="perl" dir="${sf.common.config.dir}/smoketest" failonerror="true" output="${build.drive}/output/logs/smoke_test_1.log">
      <arg value="make_junction.pl"/>
      <arg value="--link=${sf.spec.smoketest.epocroot}/epoc32"/>
      <arg value="--target=${build.drive}/epoc32"/>
      <arg value="--force"/>
    </exec>
    
    <exec executable="perl" dir="${sf.common.config.dir}/smoketest" failonerror="true" output="${build.drive}/output/logs/smoke_test_2.log">
      <arg value="ats3_testdrop.pl"/>
      <arg value="--host=${sf.spec.smoketest.host}"/>
      <arg value="--username=${sf.spec.smoketest.ats3.username}"/>
      <arg value="--password=${sf.spec.smoketest.ats3.password}"/>
      <arg value="--local-test-pkg=${sf.spec.smoketest.localtestpkg}"/>
      <arg value="--local-drop-path=${sf.spec.smoketest.localdroppath}"/>
      <arg value="--host-drop-path=${sf.spec.smoketest.hostdroppath}"/>
    </exec>
    
  </target>
  
</project>