diff -r fa9941cf3867 -r 667e88a979d7 loggingservices/eventlogger/test/src/T_LogSecurity.cpp --- a/loggingservices/eventlogger/test/src/T_LogSecurity.cpp Fri Mar 12 15:51:02 2010 +0200 +++ b/loggingservices/eventlogger/test/src/T_LogSecurity.cpp Mon Mar 15 12:46:30 2010 +0200 @@ -1,4 +1,4 @@ -// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" @@ -19,34 +19,13 @@ #include "LogServResourceInterpreter.h" #include #include -#include "SecurityPolicy.h" +#include "t_logsecuritypolicy.h" +#include "t_logutil.h" -static RTest TheTest(_L("T_LogSecurity")); +RTest TheTest(_L("t_logsecurity")); static RFs TheFileSess; /////////////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////////////// -//Test macross and functions - -static void Check(TInt aValue, TInt aLine) - { - if(!aValue) - { - TheTest(EFalse, aLine); - } - } -static void Check(TInt aValue, TInt aExpected, TInt aLine) - { - if(aValue != aExpected) - { - RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); - TheTest(EFalse, aLine); - } - } -#define TEST(arg) ::Check((arg), __LINE__) -#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) - -/////////////////////////////////////////////////////////////////////////////////////// // //Check if supplied aPolicy parameter has aCapability capability. @@ -190,7 +169,7 @@ else if(err == KErrNone) { __UHEAP_MARKEND; - RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count); + TheTest.Printf(_L("The test succeeded at heap failure rate=%d.\n"), count); break; } else