|
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @test |
|
19 @internalComponent - Internal Symbian test code |
|
20 */ |
|
21 |
|
22 #ifndef __GSATESTAPPS_H |
|
23 #define __GSATESTAPPS_H |
|
24 |
|
25 #include <e32cmn.h> |
|
26 |
|
27 _LIT(KProcSemaphore, "ssmstatetransemaphore"); |
|
28 const TInt KTestAppFailure = 12345; // Just a random number used to indicate that one of following 4 test apps has failed |
|
29 _LIT(KTestProcTranFromShutdown, "tgsastatetranfromshutdown.exe"); |
|
30 _LIT(KTestProcTranToShutdown, "tgsastatetrantoshutdown.exe"); |
|
31 _LIT(KTestProcTranFromNormal, "tgsastatetranfromnormal.exe"); |
|
32 _LIT(KTestProcTranFromStartup, "tgsastatetranfromstartup.exe"); |
|
33 |
|
34 const TInt KTestProcTranFromShutdownUid = 0xA0009DF3; |
|
35 const TInt KTestProcTranToShutdownUid = 0xA0009DF4; |
|
36 const TInt KTestProcTranFromNormalUid = 0xA0009DF5; |
|
37 const TInt KTestProcTranFromStartupUid = 0xA000A180; |
|
38 |
|
39 _LIT(KGsaTestStateTranResultFilePath, "c:\\sspluginstest\\gsatest\\"); |
|
40 _LIT(KGsaTestStateTranFromShutdownResult, "c:\\sspluginstest\\gsatest\\statetranfromshutdownresult.txt"); |
|
41 _LIT(KGsaTestStateTranToShutdownResult, "c:\\sspluginstest\\gsatest\\statetrantoshutdownresult.txt"); |
|
42 _LIT(KGsaTestStateTranFromNormalResult, "c:\\sspluginstest\\gsatest\\statetranfromnormalresult.txt"); |
|
43 _LIT(KGsaTestStateTranFromStartupResult, "c:\\sspluginstest\\gsatest\\statetranfromstartupresult.txt"); |
|
44 |
|
45 #endif // __SSMTESTAPPS_H |