Update contrib.
1 // Copyright (c) 2010 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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
21 void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
22 void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
24 #define TEST_STRING(s) _S(s)
26 #define TEST(arg) LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__)
27 #define TEST2(aValue, aExpected) LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__)
28 #define TEST2U(aValue, aExpected) LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__)
30 #define TTEST(arg) LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__, ETrue)
31 #define TTEST2(aValue, aExpected) LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue)
32 #define TTEST2U(aValue, aExpected) LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue)
34 void LogLeave(TInt aErr, const TText* aFile, TInt aLine);
36 #define LEAVE(err) LogLeave(err, TEST_STRING(__FILE__), __LINE__)
37 #define LEAVE_IF_ERROR(err) do {if(err < KErrNone) LogLeave(err, TEST_STRING(__FILE__), __LINE__);} while(0)
40 void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine);
42 #define PANIC(cat, err) LogPanic(cat, err, TEST_STRING(__FILE__), __LINE__)
44 TPtrC FileName(const TText* aFile);
45 TInt KillProcess(const TDesC& aProcessName);