1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/scripts/wstest_config.cmd Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,155 @@
1.4 +@echo off
1.5 +rem Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
1.6 +rem All rights reserved.
1.7 +rem This component and the accompanying materials are made available
1.8 +rem under the terms of "Eclipse Public License v1.0"
1.9 +rem which accompanies this distribution, and is available
1.10 +rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +rem
1.12 +rem Initial Contributors:
1.13 +rem Nokia Corporation - initial contribution.
1.14 +rem
1.15 +rem Contributors:
1.16 +rem
1.17 +rem Description:
1.18 +rem @internalComponent - Internal Symbian
1.19 +rem
1.20 +rem
1.21 +set nonnga=false
1.22 +if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini
1.23 +if /i "%2"=="nonnga" set nonnga=true
1.24 +if /i "%3"=="nonnga" set nonnga=true
1.25 +if "%nonnga%"=="true" echo Configuring for Non-NGA
1.26 +if /i "%1"=="uninstall" goto :uninstall
1.27 +if /i "%2"=="changetracking" goto :install_changetracking
1.28 +rem ================ install ================
1.29 +
1.30 +:install
1.31 +echo Replacing WSINI.INI files with test versions.
1.32 +if "%EMULATOR_DATA_DIR%"=="" (
1.33 + call :doinstall %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3
1.34 + call :doinstall %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3
1.35 +) else (
1.36 + call :doinstall %EMULATOR_DATA_DIR% multiscreen %2 %3
1.37 +)
1.38 +
1.39 +rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak
1.40 +if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak
1.41 +
1.42 +echo Editing EPOC.INI to use multiscreen.
1.43 +echo. >> %EPOC_INI%
1.44 +echo StartupMode ^7>> %EPOC_INI%
1.45 +echo _NewScreen_ >> %EPOC_INI%
1.46 +echo ScreenWidth 640 >> %EPOC_INI%
1.47 +echo ScreenHeight 240 >> %EPOC_INI%
1.48 +goto :EOF
1.49 +
1.50 +
1.51 +:doinstall
1.52 +rem If WSINI.INI(s) aren't already backed up then backup WSINI.INI(s)
1.53 +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
1.54 +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
1.55 +
1.56 +rem Back up ECONS.DLL
1.57 +if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll
1.58 +
1.59 +rem Rename WSECONS.DLL to ECONS.DLL
1.60 +if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll
1.61 +
1.62 +rem Replace WSINI.INI with test version
1.63 +if "%nonnga%"=="true" goto :doinstall_nonnga
1.64 +if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\system\data\wsini.ini
1.65 +if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\resource\data\wsini.ini
1.66 +goto :doinstall_editwsini
1.67 +
1.68 +:doinstall_nonnga
1.69 +if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\system\data\wsini.ini
1.70 +if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\resource\data\wsini.ini
1.71 +
1.72 +:doinstall_editwsini
1.73 +rem Edit WSINI.INI to run tests automatically/multiscreen
1.74 +if exist %1\z\system\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4
1.75 +if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4
1.76 +
1.77 +goto :EOF
1.78 +
1.79 +rem ================ install changetracking ================
1.80 +
1.81 +:install_changetracking
1.82 +echo Replacing WSINI.INI files with test changetracking versions.
1.83 +if "%EMULATOR_DATA_DIR%"=="" (
1.84 + call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3
1.85 + call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3
1.86 +) else (
1.87 + call :doinstall_changetracking %EMULATOR_DATA_DIR% multiscreen %2 %3
1.88 +)
1.89 +
1.90 +rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak
1.91 +if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak >nul
1.92 +
1.93 +echo Editing EPOC.INI to use multiscreen.
1.94 +echo. >> %EPOC_INI%
1.95 +echo StartupMode ^7>> %EPOC_INI%
1.96 +echo _NewScreen_ >> %EPOC_INI%
1.97 +echo ScreenWidth 640 >> %EPOC_INI%
1.98 +echo ScreenHeight 240 >> %EPOC_INI%
1.99 +goto :EOF
1.100 +
1.101 +:doinstall_changetracking
1.102 +
1.103 +rem Back up ECONS.DLL
1.104 +if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll
1.105 +
1.106 +rem Rename WSECONS.DLL to ECONS.DLL
1.107 +if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll
1.108 +
1.109 +rem Back up WSINI.INI
1.110 +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
1.111 +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
1.112 +
1.113 +rem Replace WSINI.INI with test changetracking version
1.114 +if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\system\data\wsini.ini >nul
1.115 +if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\resource\data\wsini.ini >nul
1.116 +
1.117 +rem Edit WSINI.INI to run tests automatically/multiscreen
1.118 +if exist %1\z\system\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4
1.119 +if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4
1.120 +
1.121 +goto :EOF
1.122 +
1.123 +rem ================ Uninstall ==============
1.124 +
1.125 +:uninstall
1.126 +echo Restoring WSINI.INI files.
1.127 +if "%EMULATOR_DATA_DIR%"=="" (
1.128 + call :douninstall %EPOCROOT%epoc32\release\winscw\udeb
1.129 + call :douninstall %EPOCROOT%epoc32\release\winscw\urel
1.130 +) else (
1.131 + call :douninstall %EMULATOR_DATA_DIR%
1.132 +)
1.133 +
1.134 +rem If EPOC.INI was already backed up then restore EPOC.INI from EPOC.INI.bak
1.135 +if exist %EPOC_INI%.bak (
1.136 + echo Restoring EPOC.INI from backup
1.137 + copy /y %EPOC_INI%.bak %EPOC_INI% >nul
1.138 + del /f /q %EPOC_INI%.bak >nul
1.139 +)
1.140 +goto :EOF
1.141 +
1.142 +
1.143 +:douninstall
1.144 +
1.145 +rem If WSINI.INI(s) were already backed up then restore WSINI.INI
1.146 +if exist %1\z\system\data\wsini.bak (
1.147 +copy /y %1\z\system\data\wsini.bak %1\z\system\data\wsini.ini >nul
1.148 +del /f /q %1\z\system\data\wsini.bak >nul
1.149 +)
1.150 +if exist %1\z\resource\data\wsini.bak (
1.151 +copy /y %1\z\resource\data\wsini.bak %1\z\resource\data\wsini.ini >nul
1.152 +del /f /q %1\z\resource\data\wsini.bak >nul
1.153 +)
1.154 +
1.155 +echo Restoring backedup ECONS.DLL
1.156 +if exist %1\econs-temp.dll copy /y %1\econs-temp.dll %1\econs.dll
1.157 +goto :EOF
1.158 +