os/persistentdata/loggingservices/eventlogger/test/inc/t_logutil.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 #ifndef t_logutil_h
    16 #define t_logutil_h
    17 
    18 #include <e32test.h>
    19 
    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);
    23 
    24 #define TEST_STRING(s) _S(s)
    25 
    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__)
    29 
    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)
    33 
    34 void LogLeave(TInt aErr, const TText* aFile, TInt aLine);
    35 
    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)
    38 
    39 
    40 void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine);
    41 
    42 #define PANIC(cat, err)     LogPanic(cat, err, TEST_STRING(__FILE__), __LINE__)
    43 
    44 TPtrC FileName(const TText* aFile);
    45 TInt KillProcess(const TDesC& aProcessName);
    46 
    47 #endif//t_logutil_h