First public contribution.
2 REM wspointershifttest_run.bat
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".
10 REM Initial Contributors:
11 REM Nokia Corporation - initial contribution.
19 set WSINI_ARM=%EPOCROOT%epoc32\data\z\system\data\wsini.ini
20 set WSINI_WINSCW=z\system\data\wsini.ini
21 set WSINI_TEST_WINS=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift_wins.ini
22 set WSINI_TEST_ARM=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift.ini
23 set EPOCINI_TEST=%EPOCROOT%epoc32\data\z\wstest\epoc_pointershift.ini
24 if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini
26 if /i "%1"=="uninstall" goto :uninstall
27 if /i "%1"=="install" goto :install
32 echo This script substitutes in the correct epoc ini and window server ini file for the test
33 echo arg1: It takes argument "install or "uninstall"
36 rem *** START STANDARD FILE-REPLACEMENT FUNCTIONS ***
40 echo INFO: Replacing %DST% with %SRC%
41 copy /y %DST% %DST%.original >NUL
43 copy /y %SRC% %DST% >NUL
44 if not exist %DST% echo ERROR: Copy failed!
48 echo INFO: Restoring %1
49 if not exist %1.original echo ERROR: %1.original does not exist
50 copy /y %1.original %1 >NUL
54 if defined EMULATOR_DATA_DIR (
55 call :replace %EMULATOR_DATA_DIR%\%1 %2
57 call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %2
58 call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %2
62 if defined EMULATOR_DATA_DIR (
63 call :replace %EMULATOR_DATA_DIR%\%1 %EMULATOR_DATA_DIR%\%2
65 call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %EPOCROOT%epoc32\release\winscw\udeb\%2
66 call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %EPOCROOT%epoc32\release\winscw\urel\%2
70 if defined EMULATOR_DATA_DIR (
71 call :restore %EMULATOR_DATA_DIR%\%1
73 call :restore %EPOCROOT%epoc32\release\winscw\udeb\%1
74 call :restore %EPOCROOT%epoc32\release\winscw\urel\%1
77 rem *** END STANDARD FILE-REPLACEMENT FUNCTIONS ***
81 echo Replacing files with test versions.
82 call :replace %EPOC_INI% %EPOCINI_TEST%
83 call :replace %WSINI_ARM% %WSINI_TEST_ARM%
84 call :replace_em %WSINI_WINSCW% %WSINI_TEST_WINS%
85 if defined EPOC_HOST_CPU echo HostCPU %EPOC_HOST_CPU% >> %EPOC_INI%
90 call :restore %EPOC_INI%
91 call :restore %WSINI_ARM%
92 call :restore_em %WSINI_WINSCW%