sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
#ifndef t_logutil_h
|
sl@0
|
16 |
#define t_logutil_h
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
|
sl@0
|
20 |
void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
|
sl@0
|
21 |
void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
|
sl@0
|
22 |
void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
|
sl@0
|
23 |
|
sl@0
|
24 |
#define TEST_STRING(s) _S(s)
|
sl@0
|
25 |
|
sl@0
|
26 |
#define TEST(arg) LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__)
|
sl@0
|
27 |
#define TEST2(aValue, aExpected) LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__)
|
sl@0
|
28 |
#define TEST2U(aValue, aExpected) LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__)
|
sl@0
|
29 |
|
sl@0
|
30 |
#define TTEST(arg) LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__, ETrue)
|
sl@0
|
31 |
#define TTEST2(aValue, aExpected) LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue)
|
sl@0
|
32 |
#define TTEST2U(aValue, aExpected) LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue)
|
sl@0
|
33 |
|
sl@0
|
34 |
void LogLeave(TInt aErr, const TText* aFile, TInt aLine);
|
sl@0
|
35 |
|
sl@0
|
36 |
#define LEAVE(err) LogLeave(err, TEST_STRING(__FILE__), __LINE__)
|
sl@0
|
37 |
#define LEAVE_IF_ERROR(err) do {if(err < KErrNone) LogLeave(err, TEST_STRING(__FILE__), __LINE__);} while(0)
|
sl@0
|
38 |
|
sl@0
|
39 |
|
sl@0
|
40 |
void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine);
|
sl@0
|
41 |
|
sl@0
|
42 |
#define PANIC(cat, err) LogPanic(cat, err, TEST_STRING(__FILE__), __LINE__)
|
sl@0
|
43 |
|
sl@0
|
44 |
TPtrC FileName(const TText* aFile);
|
sl@0
|
45 |
TInt KillProcess(const TDesC& aProcessName);
|
sl@0
|
46 |
|
sl@0
|
47 |
#endif//t_logutil_h
|