os/graphics/windowing/windowserver/test/scripts/wspointershifttest_run.bat
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/scripts/wspointershifttest_run.bat	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,96 @@
     1.4 +@echo off
     1.5 +REM wspointershifttest_run.bat
     1.6 +REM Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.7 +REM All rights reserved.
     1.8 +REM This component and the accompanying materials are made available
     1.9 +REM under the terms of "Eclipse Public License v1.0"
    1.10 +REM which accompanies this distribution, and is available
    1.11 +REM at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.12 +REM 
    1.13 +REM Initial Contributors:
    1.14 +REM Nokia Corporation - initial contribution.
    1.15 +REM 
    1.16 +REM Contributors:
    1.17 +REM 
    1.18 +REM Description:
    1.19 +REM 
    1.20 +setlocal
    1.21 +
    1.22 +set WSINI_ARM=%EPOCROOT%epoc32\data\z\system\data\wsini.ini
    1.23 +set WSINI_WINSCW=z\system\data\wsini.ini
    1.24 +set WSINI_TEST_WINS=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift_wins.ini
    1.25 +set WSINI_TEST_ARM=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift.ini
    1.26 +set EPOCINI_TEST=%EPOCROOT%epoc32\data\z\wstest\epoc_pointershift.ini
    1.27 +if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini
    1.28 +
    1.29 +if /i "%1"=="uninstall" goto :uninstall
    1.30 +if /i "%1"=="install" goto :install
    1.31 +
    1.32 +:help
    1.33 +	echo.
    1.34 +	echo Description:
    1.35 +	echo This script substitutes in the correct epoc ini and window server ini file for the test
    1.36 +	echo arg1: It takes argument "install or "uninstall"
    1.37 +	goto :done
    1.38 +
    1.39 +rem *** START STANDARD FILE-REPLACEMENT FUNCTIONS ***
    1.40 +:replace
    1.41 +	set DST=%1
    1.42 +	set SRC=%2
    1.43 +	echo INFO: Replacing %DST% with %SRC%
    1.44 +	copy /y %DST% %DST%.original >NUL
    1.45 +	if defined SRC (
    1.46 +		copy /y %SRC% %DST% >NUL
    1.47 +		if not exist %DST% echo ERROR: Copy failed!
    1.48 +	)
    1.49 +	goto :EOF
    1.50 +:restore
    1.51 +	echo INFO: Restoring %1 
    1.52 +	if not exist %1.original echo ERROR: %1.original does not exist
    1.53 +	copy /y %1.original %1 >NUL
    1.54 +	del %1.original >NUL
    1.55 +	goto :EOF
    1.56 +:replace_em
    1.57 +	if defined EMULATOR_DATA_DIR (
    1.58 +		call :replace %EMULATOR_DATA_DIR%\%1 %2
    1.59 +	) else (
    1.60 +		call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %2
    1.61 +		call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %2
    1.62 +	)
    1.63 +	goto :EOF
    1.64 +:replace_em2
    1.65 +	if defined EMULATOR_DATA_DIR (
    1.66 +		call :replace %EMULATOR_DATA_DIR%\%1 %EMULATOR_DATA_DIR%\%2
    1.67 +	) else (
    1.68 +		call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %EPOCROOT%epoc32\release\winscw\udeb\%2
    1.69 +		call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %EPOCROOT%epoc32\release\winscw\urel\%2
    1.70 +	)
    1.71 +	goto :EOF
    1.72 +:restore_em
    1.73 +	if defined EMULATOR_DATA_DIR (
    1.74 +		call :restore %EMULATOR_DATA_DIR%\%1
    1.75 +	) else (
    1.76 +		call :restore %EPOCROOT%epoc32\release\winscw\udeb\%1
    1.77 +		call :restore %EPOCROOT%epoc32\release\winscw\urel\%1
    1.78 +	)
    1.79 +	goto :EOF
    1.80 +rem *** END STANDARD FILE-REPLACEMENT FUNCTIONS ***
    1.81 +
    1.82 +
    1.83 +:install
    1.84 +	echo Replacing files with test versions.
    1.85 +	call :replace    %EPOC_INI%		%EPOCINI_TEST%
    1.86 +	call :replace    %WSINI_ARM%	%WSINI_TEST_ARM%
    1.87 +	call :replace_em %WSINI_WINSCW% %WSINI_TEST_WINS%
    1.88 +	if defined EPOC_HOST_CPU echo HostCPU %EPOC_HOST_CPU% >> %EPOC_INI%
    1.89 +	goto :done
    1.90 +
    1.91 +:uninstall
    1.92 +	echo Restoring files
    1.93 +	call :restore    %EPOC_INI%
    1.94 +	call :restore    %WSINI_ARM%
    1.95 +	call :restore_em %WSINI_WINSCW%
    1.96 +
    1.97 +
    1.98 +:done
    1.99 +endlocal