os/persistentdata/loggingservices/eventlogger/test/inc/t_logutil.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/inc/t_logutil.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,47 @@
     1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +#ifndef t_logutil_h
    1.19 +#define t_logutil_h
    1.20 +
    1.21 +#include <e32test.h>
    1.22 +
    1.23 +void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
    1.24 +void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
    1.25 +void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName = EFalse);
    1.26 +
    1.27 +#define TEST_STRING(s) _S(s)
    1.28 +
    1.29 +#define TEST(arg)                   LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__)
    1.30 +#define TEST2(aValue, aExpected)    LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__)
    1.31 +#define TEST2U(aValue, aExpected)   LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__)
    1.32 +
    1.33 +#define TTEST(arg)                  LogTestBoolExpr((arg), TEST_STRING(__FILE__), __LINE__, ETrue)
    1.34 +#define TTEST2(aValue, aExpected)   LogCheck((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue)
    1.35 +#define TTEST2U(aValue, aExpected)  LogCheckU((aValue), (aExpected), TEST_STRING(__FILE__), __LINE__, ETrue)
    1.36 +
    1.37 +void LogLeave(TInt aErr, const TText* aFile, TInt aLine);
    1.38 +
    1.39 +#define LEAVE(err)           LogLeave(err, TEST_STRING(__FILE__), __LINE__)
    1.40 +#define LEAVE_IF_ERROR(err)  do {if(err < KErrNone) LogLeave(err, TEST_STRING(__FILE__), __LINE__);} while(0)
    1.41 +
    1.42 +
    1.43 +void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine);
    1.44 +
    1.45 +#define PANIC(cat, err)     LogPanic(cat, err, TEST_STRING(__FILE__), __LINE__)
    1.46 +
    1.47 +TPtrC FileName(const TText* aFile);
    1.48 +TInt KillProcess(const TDesC& aProcessName);
    1.49 +
    1.50 +#endif//t_logutil_h