os/graphics/windowing/windowserver/test/scripts/wstest_config.cmd
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
@echo off
sl@0
     2
rem Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
rem All rights reserved.
sl@0
     4
rem This component and the accompanying materials are made available
sl@0
     5
rem under the terms of "Eclipse Public License v1.0"
sl@0
     6
rem which accompanies this distribution, and is available
sl@0
     7
rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
rem
sl@0
     9
rem Initial Contributors:
sl@0
    10
rem Nokia Corporation - initial contribution.
sl@0
    11
rem
sl@0
    12
rem Contributors:
sl@0
    13
rem
sl@0
    14
rem Description:
sl@0
    15
rem @internalComponent - Internal Symbian
sl@0
    16
rem 
sl@0
    17
rem
sl@0
    18
set nonnga=false
sl@0
    19
if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini
sl@0
    20
if /i "%2"=="nonnga" set nonnga=true
sl@0
    21
if /i "%3"=="nonnga" set nonnga=true
sl@0
    22
if "%nonnga%"=="true" echo Configuring for Non-NGA
sl@0
    23
if /i "%1"=="uninstall" goto :uninstall
sl@0
    24
if /i "%2"=="changetracking" goto :install_changetracking
sl@0
    25
rem ================ install ================
sl@0
    26
sl@0
    27
:install
sl@0
    28
echo Replacing WSINI.INI files with test versions.
sl@0
    29
if "%EMULATOR_DATA_DIR%"=="" (
sl@0
    30
	call :doinstall %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3
sl@0
    31
	call :doinstall %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3
sl@0
    32
) else (
sl@0
    33
	call :doinstall %EMULATOR_DATA_DIR% multiscreen %2 %3
sl@0
    34
)
sl@0
    35
sl@0
    36
rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak
sl@0
    37
if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak
sl@0
    38
sl@0
    39
echo Editing EPOC.INI to use multiscreen.
sl@0
    40
echo. >> %EPOC_INI%
sl@0
    41
echo StartupMode ^7>> %EPOC_INI%
sl@0
    42
echo _NewScreen_ >> %EPOC_INI%
sl@0
    43
echo ScreenWidth 640 >> %EPOC_INI%
sl@0
    44
echo ScreenHeight 240 >> %EPOC_INI%
sl@0
    45
goto :EOF
sl@0
    46
sl@0
    47
sl@0
    48
:doinstall
sl@0
    49
rem If WSINI.INI(s) aren't already backed up then backup WSINI.INI(s)
sl@0
    50
if not exist %1\z\system\data\wsini.bak   if exist %1\z\system\data\wsini.ini   copy /y %1\z\system\data\wsini.ini   %1\z\system\data\wsini.bak >nul
sl@0
    51
if not exist %1\z\resource\data\wsini.bak if exist %1\z\resource\data\wsini.ini copy /y %1\z\resource\data\wsini.ini %1\z\resource\data\wsini.bak >nul
sl@0
    52
sl@0
    53
rem Back up ECONS.DLL
sl@0
    54
if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll
sl@0
    55
sl@0
    56
rem Rename WSECONS.DLL to ECONS.DLL
sl@0
    57
if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll
sl@0
    58
sl@0
    59
rem Replace WSINI.INI with test version
sl@0
    60
if "%nonnga%"=="true" goto :doinstall_nonnga
sl@0
    61
if exist %1\z\system\data\wsini.ini   copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\system\data\wsini.ini
sl@0
    62
if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\resource\data\wsini.ini
sl@0
    63
goto :doinstall_editwsini
sl@0
    64
sl@0
    65
:doinstall_nonnga
sl@0
    66
if exist %1\z\system\data\wsini.ini   copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\system\data\wsini.ini
sl@0
    67
if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\resource\data\wsini.ini
sl@0
    68
sl@0
    69
:doinstall_editwsini
sl@0
    70
rem Edit WSINI.INI to run tests automatically/multiscreen
sl@0
    71
if exist %1\z\system\data\wsini.ini   perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4
sl@0
    72
if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4
sl@0
    73
sl@0
    74
goto :EOF
sl@0
    75
sl@0
    76
rem ================ install changetracking ================
sl@0
    77
sl@0
    78
:install_changetracking
sl@0
    79
echo Replacing WSINI.INI files with test changetracking versions.
sl@0
    80
if "%EMULATOR_DATA_DIR%"=="" (
sl@0
    81
	call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3
sl@0
    82
	call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3
sl@0
    83
) else (
sl@0
    84
	call :doinstall_changetracking %EMULATOR_DATA_DIR% multiscreen %2 %3
sl@0
    85
)
sl@0
    86
sl@0
    87
rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak
sl@0
    88
if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak >nul
sl@0
    89
sl@0
    90
echo Editing EPOC.INI to use multiscreen.
sl@0
    91
echo. >> %EPOC_INI%
sl@0
    92
echo StartupMode ^7>> %EPOC_INI%
sl@0
    93
echo _NewScreen_ >> %EPOC_INI%
sl@0
    94
echo ScreenWidth 640 >> %EPOC_INI%
sl@0
    95
echo ScreenHeight 240 >> %EPOC_INI%
sl@0
    96
goto :EOF
sl@0
    97
sl@0
    98
:doinstall_changetracking
sl@0
    99
sl@0
   100
rem Back up ECONS.DLL
sl@0
   101
if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll
sl@0
   102
sl@0
   103
rem Rename WSECONS.DLL to ECONS.DLL
sl@0
   104
if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll
sl@0
   105
sl@0
   106
rem Back up WSINI.INI
sl@0
   107
if not exist %1\z\system\data\wsini.bak   if exist %1\z\system\data\wsini.ini   copy /y %1\z\system\data\wsini.ini %1\z\system\data\wsini.bak >nul
sl@0
   108
if not exist %1\z\resource\data\wsini.bak if exist %1\z\resource\data\wsini.ini copy /y %1\z\resource\data\wsini.ini %1\z\resource\data\wsini.bak >nul
sl@0
   109
sl@0
   110
rem Replace WSINI.INI with test changetracking version
sl@0
   111
if exist %1\z\system\data\wsini.ini   copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\system\data\wsini.ini >nul
sl@0
   112
if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\resource\data\wsini.ini >nul
sl@0
   113
sl@0
   114
rem Edit WSINI.INI to run tests automatically/multiscreen
sl@0
   115
if exist %1\z\system\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4
sl@0
   116
if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4
sl@0
   117
sl@0
   118
goto :EOF
sl@0
   119
sl@0
   120
rem ================ Uninstall ==============
sl@0
   121
sl@0
   122
:uninstall
sl@0
   123
echo Restoring WSINI.INI files.
sl@0
   124
if "%EMULATOR_DATA_DIR%"=="" (
sl@0
   125
	call :douninstall %EPOCROOT%epoc32\release\winscw\udeb
sl@0
   126
	call :douninstall %EPOCROOT%epoc32\release\winscw\urel
sl@0
   127
) else (
sl@0
   128
	call :douninstall %EMULATOR_DATA_DIR%
sl@0
   129
)
sl@0
   130
sl@0
   131
rem If EPOC.INI was already backed up then restore EPOC.INI from EPOC.INI.bak
sl@0
   132
if exist %EPOC_INI%.bak (
sl@0
   133
	echo Restoring EPOC.INI from backup
sl@0
   134
	copy /y %EPOC_INI%.bak %EPOC_INI% >nul
sl@0
   135
	del /f /q %EPOC_INI%.bak >nul
sl@0
   136
)
sl@0
   137
goto :EOF
sl@0
   138
sl@0
   139
sl@0
   140
:douninstall
sl@0
   141
sl@0
   142
rem If WSINI.INI(s) were already backed up then restore WSINI.INI
sl@0
   143
if exist %1\z\system\data\wsini.bak (
sl@0
   144
copy /y %1\z\system\data\wsini.bak   %1\z\system\data\wsini.ini >nul
sl@0
   145
del  /f /q %1\z\system\data\wsini.bak >nul
sl@0
   146
)
sl@0
   147
if exist %1\z\resource\data\wsini.bak (
sl@0
   148
copy /y %1\z\resource\data\wsini.bak %1\z\resource\data\wsini.ini >nul
sl@0
   149
del  /f /q %1\z\resource\data\wsini.bak >nul
sl@0
   150
)
sl@0
   151
sl@0
   152
echo Restoring backedup ECONS.DLL
sl@0
   153
if exist %1\econs-temp.dll copy /y %1\econs-temp.dll %1\econs.dll
sl@0
   154
goto :EOF
sl@0
   155