os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_runtxtshellflashtests.bat
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 @echo off
     2 rem
     3 rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     4 rem All rights reserved.
     5 rem This component and the accompanying materials are made available
     6 rem under the terms of "Eclipse Public License v1.0"
     7 rem which accompanies this distribution, and is available
     8 rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 rem
    10 rem Initial Contributors:
    11 rem Nokia Corporation - initial contribution.
    12 rem
    13 rem Contributors:
    14 rem
    15 rem Description:
    16 rem
    17 @SETLOCAL
    18 @rem This batch file will run the tests automatically.
    19 @IF "%~1"=="" goto ERROR
    20 @IF "%~2"=="" goto ERROR
    21 @FIND "startupmode 1" %EPOCROOT%EPOC32\data\epoc.ini >NUL
    22 @if errorlevel 1 goto ADDLINE
    23 goto BODY
    24 
    25 :ADDLINE
    26 echo startupmode 1 >> %EPOCROOT%EPOC32\data\epoc.ini
    27 goto BODY
    28 
    29 :BODY
    30 @if exist \textshell.bat call \textshell.bat
    31 @REM FIRST TEST PRESETUP
    32 @if exist %EPOCROOT%EPOC32\winscw\c\private\10202be9\romversion\romversion_info.txt erase %EPOCROOT%EPOC32\winscw\c\private\10202be9\romversion\romversion_info.txt
    33 
    34 @REM FIRST TEST SYSLIB-CENTRALREPOSITORY-CT-400[2|3|4]
    35 @if exist %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem2.exe call %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem2.exe
    36 
    37 @REM SECOND TEST PRESETUP SYSLIB-CENTRALREPOSITORY-CT-4005
    38 @if exist  %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333.txt move %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333.txt  %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333_temp.txt
    39 @if exist %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333_modified.cre copy %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333_modified.cre %EPOCROOT%EPOC32\winscw\c\private\10202be9\persists\10033333.cre
    40 @if exist %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\sw_modified1.txt copy %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\sw_modified1.txt %EPOCROOT%EPOC32\winscw\c\private\10202be9\romversion\romversion_info.txt
    41 
    42 @REM SECOND TEST
    43 @if exist %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem1.exe call %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem1.exe
    44 
    45 @REM SECOND TEST POST CLEANUP
    46 @if exist %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333_temp.txt move %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333_temp.txt  %EPOCROOT%EPOC32\RELEASE\%1\%2\Z\private\10202be9\10033333.txt
    47 goto EOF
    48 
    49 :ERROR
    50 @echo "please supply the release winscw and build type [udeb|urel]"
    51 
    52 :EOF
    53 
    54