sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: #ifndef t_logutil_h sl@0: #define t_logutil_h sl@0: sl@0: #include sl@0: sl@0: void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse); sl@0: void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse); sl@0: void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse); sl@0: sl@0: #define TEST_STRING(s) _S(s) sl@0: sl@0: #define TEST(arg) LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__) sl@0: #define TEST2(aValue, aExpected) LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__) sl@0: #define TEST2U(aValue, aExpected) LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__) sl@0: sl@0: #define TTEST(arg) LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__, ETrue) sl@0: #define TTEST2(aValue, aExpected) LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue) sl@0: #define TTEST2U(aValue, aExpected) LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue) sl@0: sl@0: void LogLeave(TInt aErr, const TText* aFile, TInt aLine); sl@0: sl@0: #define LEAVE(err) LogLeave(err, TEST_STRING(__FILE__), __LINE__) sl@0: #define LEAVE_IF_ERROR(err) do {if(err < KErrNone) LogLeave(err, TEST_STRING(__FILE__), __LINE__);} while(0) sl@0: sl@0: sl@0: void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine); sl@0: sl@0: #define PANIC(cat, err) LogPanic(cat, err, TEST_STRING(__FILE__), __LINE__) sl@0: sl@0: TPtrC FileName(const TText* aFile); sl@0: TInt KillProcess(const TDesC& aProcessName); sl@0: sl@0: #endif//t_logutil_h