sl@0: @echo off sl@0: REM wspointershifttest_run.bat 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: sl@0: set WSINI_ARM=%EPOCROOT%epoc32\data\z\system\data\wsini.ini sl@0: set WSINI_WINSCW=z\system\data\wsini.ini sl@0: set WSINI_TEST_WINS=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift_wins.ini sl@0: set WSINI_TEST_ARM=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift.ini sl@0: set EPOCINI_TEST=%EPOCROOT%epoc32\data\z\wstest\epoc_pointershift.ini sl@0: if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini sl@0: sl@0: if /i "%1"=="uninstall" goto :uninstall sl@0: if /i "%1"=="install" goto :install sl@0: sl@0: :help sl@0: echo. sl@0: echo Description: sl@0: echo This script substitutes in the correct epoc ini and window server ini file for the test sl@0: echo arg1: It takes argument "install or "uninstall" sl@0: goto :done sl@0: sl@0: rem *** START STANDARD FILE-REPLACEMENT FUNCTIONS *** sl@0: :replace sl@0: set DST=%1 sl@0: set SRC=%2 sl@0: echo INFO: Replacing %DST% with %SRC% sl@0: copy /y %DST% %DST%.original >NUL sl@0: if defined SRC ( sl@0: copy /y %SRC% %DST% >NUL sl@0: if not exist %DST% echo ERROR: Copy failed! sl@0: ) sl@0: goto :EOF sl@0: :restore sl@0: echo INFO: Restoring %1 sl@0: if not exist %1.original echo ERROR: %1.original does not exist sl@0: copy /y %1.original %1 >NUL sl@0: del %1.original >NUL sl@0: goto :EOF sl@0: :replace_em sl@0: if defined EMULATOR_DATA_DIR ( sl@0: call :replace %EMULATOR_DATA_DIR%\%1 %2 sl@0: ) else ( sl@0: call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %2 sl@0: call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %2 sl@0: ) sl@0: goto :EOF sl@0: :replace_em2 sl@0: if defined EMULATOR_DATA_DIR ( sl@0: call :replace %EMULATOR_DATA_DIR%\%1 %EMULATOR_DATA_DIR%\%2 sl@0: ) else ( sl@0: call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %EPOCROOT%epoc32\release\winscw\udeb\%2 sl@0: call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %EPOCROOT%epoc32\release\winscw\urel\%2 sl@0: ) sl@0: goto :EOF sl@0: :restore_em sl@0: if defined EMULATOR_DATA_DIR ( sl@0: call :restore %EMULATOR_DATA_DIR%\%1 sl@0: ) else ( sl@0: call :restore %EPOCROOT%epoc32\release\winscw\udeb\%1 sl@0: call :restore %EPOCROOT%epoc32\release\winscw\urel\%1 sl@0: ) sl@0: goto :EOF sl@0: rem *** END STANDARD FILE-REPLACEMENT FUNCTIONS *** sl@0: sl@0: sl@0: :install sl@0: echo Replacing files with test versions. sl@0: call :replace %EPOC_INI% %EPOCINI_TEST% sl@0: call :replace %WSINI_ARM% %WSINI_TEST_ARM% sl@0: call :replace_em %WSINI_WINSCW% %WSINI_TEST_WINS% sl@0: if defined EPOC_HOST_CPU echo HostCPU %EPOC_HOST_CPU% >> %EPOC_INI% sl@0: goto :done sl@0: sl@0: :uninstall sl@0: echo Restoring files sl@0: call :restore %EPOC_INI% sl@0: call :restore %WSINI_ARM% sl@0: call :restore_em %WSINI_WINSCW% sl@0: sl@0: sl@0: :done sl@0: endlocal