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.
15 #include "t_logutil.h"
17 //Define "TheTest" variable used in the test cpp files
20 TPtrC FileName(const TText* aFile)
23 TInt ix=p.LocateReverse('\\');
25 ix=p.LocateReverse('/');
31 void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName)
35 TPtrC fname(FileName(aFile));
39 TName name = th.Name();
40 RDebug::Print(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine);
41 User::Panic(_L("t_logutil-1"), 1);
45 TheTest.Printf(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine);
46 TheTest(EFalse, aLine);
51 void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName)
53 if(aValue != aExpected)
55 TPtrC fname(FileName(aFile));
59 TName name = th.Name();
60 RDebug::Print(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
61 User::Panic(_L("t_logutil-2"), 2);
65 TheTest.Printf(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
66 TheTest(EFalse, aLine);
71 void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName)
73 if(aValue != aExpected)
75 TPtrC fname(FileName(aFile));
79 TName name = th.Name();
80 RDebug::Print(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
81 User::Panic(_L("t_logutil-3"), 3);
85 TheTest.Printf(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
86 TheTest(EFalse, aLine);
91 void LogLeave(TInt aErr, const TText* aFile, const TInt aLine)
93 TPtrC fname(FileName(aFile));
94 TheTest.Printf(_L("*** LogEng test leave, err=%d, file: %S-%d\r\n"), aErr, &fname, aLine);
98 void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine)
100 TPtrC fname(FileName(aFile));
101 TheTest.Printf(_L("*** LogEng test panic'd with err=%d, category=%S, file: %S-%d\r\n"), aErr, &aCategory, &fname, aLine);
102 User::Panic(aCategory, aErr);
105 TInt KillProcess(const TDesC& aProcessName)
109 TheTest.Printf(_L("Find and kill \"%S\" process.\n"), &aProcessName);
111 TBuf<64> pattern(aProcessName);
112 TInt length = pattern.Length();
114 TFindProcess procFinder(pattern);
116 while (procFinder.Next(name) == KErrNone)
118 if (name.Length() > length)
119 {//If found name is a string containing aProcessName string.
120 TChar c(name[length]);
121 if (c.IsAlphaDigit() ||
125 // If the found name is other valid application name
126 // starting with aProcessName string.
127 TheTest.Printf(_L(":: Process name: \"%S\".\n"), &name);
132 if (proc.Open(name) == KErrNone)
135 TheTest.Printf(_L("\"%S\" process killed.\n"), &name);