javauis/coreui/tsrc/testcoreui/build/build.xml
branchRCL_3
changeset 83 26b2b12093af
parent 77 7cee158cb8cd
child 84 0553e2305d00
equal deleted inserted replaced
77:7cee158cb8cd 83:26b2b12093af
     1 <!--
       
     2  Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3  All rights reserved.
       
     4  This component and the accompanying materials are made available
       
     5  under the terms of "Eclipse Public License v1.0"
       
     6  which accompanies this distribution, and is available
       
     7  at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 
       
     9  Initial Contributors:
       
    10  Nokia Corporation - initial contribution.
       
    11 
       
    12  Contributors:
       
    13 
       
    14  Description: Java build file of the test CoreUI
       
    15 -->
       
    16 
       
    17 <project name="javacoreui" default="deploy" basedir=".">
       
    18 
       
    19   <import file="../../../../../build/utilities.xml"/>
       
    20 
       
    21   <property name="java.bin.root" value="${env.JAVA_BIN_ROOT}"/>
       
    22 
       
    23   <target name="run" depends="deploy">
       
    24       <echo>Running CoreUiTests 1</echo>
       
    25       <exec executable="${java.bin.root}/bin/javaunittester">
       
    26           <arg line="-mainclass=com.nokia.mj.impl.coreuitest.CoreUiTests"/>
       
    27           <arg line="1"/>
       
    28       </exec>
       
    29 
       
    30       <echo>Running CoreUiTests 01</echo>
       
    31       <exec executable="${java.bin.root}/bin/javaunittester">
       
    32           <arg line="-mainclass=com.nokia.mj.impl.coreuitest.CoreUiTests"/>
       
    33           <arg line="01"/>
       
    34       </exec>
       
    35 
       
    36       <echo>Running CoreUiTests 001</echo>
       
    37       <exec executable="${java.bin.root}/bin/javaunittester">
       
    38           <arg line="-mainclass=com.nokia.mj.impl.coreuitest.CoreUiTests"/>
       
    39           <arg line="001"/>
       
    40       </exec>
       
    41   </target>
       
    42 
       
    43   <target name="main" depends="clean,run"/>
       
    44 
       
    45 </project>
       
    46