sl@0: @echo off sl@0: rem sl@0: rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: rem All rights reserved. sl@0: rem This component and the accompanying materials are made available sl@0: rem under the terms of "Eclipse Public License v1.0" sl@0: rem which accompanies this distribution, and is available sl@0: rem at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: rem sl@0: rem Initial Contributors: sl@0: rem Nokia Corporation - initial contribution. sl@0: rem sl@0: rem Contributors: sl@0: rem sl@0: rem Description: sl@0: rem sl@0: @SETLOCAL sl@0: @rem This batch file will run the tests automatically. sl@0: @IF "%~1"=="" goto ERROR sl@0: @IF "%~2"=="" goto ERROR sl@0: @FIND "startupmode 1" %EPOCROOT%EPOC32\data\epoc.ini >NUL sl@0: @if errorlevel 1 goto ADDLINE sl@0: goto BODY sl@0: sl@0: :ADDLINE sl@0: echo startupmode 1 >> %EPOCROOT%EPOC32\data\epoc.ini sl@0: goto BODY sl@0: sl@0: :BODY sl@0: @if exist \textshell.bat call \textshell.bat sl@0: @REM FIRST TEST PRESETUP sl@0: @if exist %EPOCROOT%EPOC32\winscw\c\private\10202be9\romversion\romversion_info.txt erase %EPOCROOT%EPOC32\winscw\c\private\10202be9\romversion\romversion_info.txt sl@0: sl@0: @REM FIRST TEST SYSLIB-CENTRALREPOSITORY-CT-400[2|3|4] sl@0: @if exist %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem2.exe call %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem2.exe sl@0: sl@0: @REM SECOND TEST PRESETUP SYSLIB-CENTRALREPOSITORY-CT-4005 sl@0: @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 sl@0: @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 sl@0: @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 sl@0: sl@0: @REM SECOND TEST sl@0: @if exist %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem1.exe call %EPOCROOT%EPOC32\RELEASE\%1\%2\t_cenrep_fota_txtem1.exe sl@0: sl@0: @REM SECOND TEST POST CLEANUP sl@0: @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 sl@0: goto EOF sl@0: sl@0: :ERROR sl@0: @echo "please supply the release winscw and build type [udeb|urel]" sl@0: sl@0: :EOF sl@0: sl@0: