os/graphics/windowing/windowserver/test/scripts/wspointershifttest_run.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 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".
     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 
    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
    25 
    26 if /i "%1"=="uninstall" goto :uninstall
    27 if /i "%1"=="install" goto :install
    28 
    29 :help
    30 	echo.
    31 	echo Description:
    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"
    34 	goto :done
    35 
    36 rem *** START STANDARD FILE-REPLACEMENT FUNCTIONS ***
    37 :replace
    38 	set DST=%1
    39 	set SRC=%2
    40 	echo INFO: Replacing %DST% with %SRC%
    41 	copy /y %DST% %DST%.original >NUL
    42 	if defined SRC (
    43 		copy /y %SRC% %DST% >NUL
    44 		if not exist %DST% echo ERROR: Copy failed!
    45 	)
    46 	goto :EOF
    47 :restore
    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
    51 	del %1.original >NUL
    52 	goto :EOF
    53 :replace_em
    54 	if defined EMULATOR_DATA_DIR (
    55 		call :replace %EMULATOR_DATA_DIR%\%1 %2
    56 	) else (
    57 		call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %2
    58 		call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %2
    59 	)
    60 	goto :EOF
    61 :replace_em2
    62 	if defined EMULATOR_DATA_DIR (
    63 		call :replace %EMULATOR_DATA_DIR%\%1 %EMULATOR_DATA_DIR%\%2
    64 	) else (
    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
    67 	)
    68 	goto :EOF
    69 :restore_em
    70 	if defined EMULATOR_DATA_DIR (
    71 		call :restore %EMULATOR_DATA_DIR%\%1
    72 	) else (
    73 		call :restore %EPOCROOT%epoc32\release\winscw\udeb\%1
    74 		call :restore %EPOCROOT%epoc32\release\winscw\urel\%1
    75 	)
    76 	goto :EOF
    77 rem *** END STANDARD FILE-REPLACEMENT FUNCTIONS ***
    78 
    79 
    80 :install
    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%
    86 	goto :done
    87 
    88 :uninstall
    89 	echo Restoring files
    90 	call :restore    %EPOC_INI%
    91 	call :restore    %WSINI_ARM%
    92 	call :restore_em %WSINI_WINSCW%
    93 
    94 
    95 :done
    96 endlocal