0
|
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 the License "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 |
#ifndef T_RMDEBUG_APP_H
|
|
17 |
#define T_RMDEBUG_APP_H
|
|
18 |
|
|
19 |
_LIT(KRMDebugTestApplication, "z:\\sys\\bin\\t_rmdebug_app.exe");
|
|
20 |
_LIT(KUserPanic, "UserPanic");
|
|
21 |
const TInt KUserPanicCode = 0x1234ABCD;
|
|
22 |
|
|
23 |
enum TMyPropertyKeys {EMyPropertyInteger};
|
|
24 |
|
|
25 |
|
|
26 |
// enumeration of functions to call in test debug application
|
|
27 |
enum TDebugFunctionType
|
|
28 |
{
|
|
29 |
EDefaultDebugFunction,
|
|
30 |
EPrefetchAbortFunction,
|
|
31 |
EUserPanicFunction,
|
|
32 |
EStackOverflowFunction,
|
|
33 |
EDataAbortFunction,
|
|
34 |
EUndefInstructionFunction,
|
|
35 |
EDataReadErrorFunction,
|
|
36 |
EDataWriteErrorFunction,
|
|
37 |
EUserExceptionFunction,
|
|
38 |
EWaitFiveSecondsThenExit,
|
|
39 |
ESpinForever,
|
|
40 |
ESpinForeverWithBreakPoint
|
|
41 |
};
|
|
42 |
|
|
43 |
#endif //T_RMDEBUG_APP_H
|
|
44 |
|