Update contrib.
1 // Copyright (c) 2004-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.
17 #include "t_logutil2.h"
19 //Define "TheTest" variable used in the test cpp files
22 _LIT(KHelperExeName, "t_LogHiCapHelper.exe");
24 //======================================================================================================
26 #ifdef LOGGING_ENABLED
30 _LIT(KNewLogText, "===== NEW LOG =====");
33 TInt ret=logger.Connect();
36 logger.CreateLog(KLogFolder, KLogFileName, EFileLoggingModeOverwrite);
37 logger.Write(KNewLogText);
42 void Log::Write(const TDesC& aText)
47 TInt ret=logger.Connect();
50 logger.SetDateAndTime(EFalse,EFalse);
51 logger.CreateLog(KLogFolder, KLogFileName,EFileLoggingModeAppend);
52 TBuf<KLogEngLogBufferSize> buf;
56 dateTime = now.DateTime();
57 buf.Format(KTimeFormat,dateTime.Hour(),dateTime.Minute(),dateTime.Second(),dateTime.MicroSecond());
58 buf.AppendFormat(KTextFormat,&aText);
66 void Log::WriteFormat(TRefByValue<const TDesC> aFmt, ...)
73 TBuf<2*KLogEngLogBufferSize> buf;
79 dateTime = now.DateTime();
80 buf.Format(KTimeFormat,dateTime.Hour(),dateTime.Minute(),dateTime.Second(),dateTime.MicroSecond());
81 buf.AppendFormatList(aFmt, list );
84 TInt ret=logger.Connect();
87 logger.SetDateAndTime(EFalse,EFalse);
88 logger.CreateLog(KLogFolder, KLogFileName,EFileLoggingModeAppend);
95 void Log::PruneLogFile()
97 const TInt KMaxLogSize = 1024 * 500;
98 _LIT(KDriveLetter, "C:\\Logs\\");
100 TFileName fileName(KDriveLetter);
101 fileName.Append(KLogFolder);
102 fileName.Append(KLogFileName);
105 if (fsSession.Connect() == KErrNone)
108 if (fsSession.Entry(fileName, entry) == KErrNone)
110 // Check size and delete if its too big
111 if (entry.iSize >= KMaxLogSize)
112 fsSession.Delete(fileName); // ignore error
121 GLDEF_D CTrapCleanup* theCleanup;
122 GLDEF_D CActiveScheduler *testScheduler;
124 GLDEF_D TFileName theLogName;
125 GLDEF_D RFile theLog;
126 GLDEF_D RLogTestSession theLogServ;
128 //**********************************
130 //**********************************
132 CTestActive::CTestActive(TInt aPriority)
135 CActiveScheduler::Add(this);
139 CTestActive::~CTestActive()
144 void CTestActive::DoCancel()
146 TRequestStatus* s=&iStatus;
147 User::RequestComplete(s, KErrNone);
150 void CTestActive::StartL()
152 iDelayCompletion=EFalse;
154 iStatus = KRequestPending;
158 void CTestActive::StartL(TInt aDelay)
160 iDelayCompletion=ETrue;
162 iStatus = KRequestPending;
166 void CTestActive::RunL()
168 if(iDelayCompletion && iDelayTime)
170 // Wait for events in other threads to have a go....
171 User::After(iDelayTime);
173 iStoredStatus=iStatus;
175 TRequestStatus* s=&iStatus;
176 User::RequestComplete(s, KErrNone);
181 iStatus=iStoredStatus;
183 LOGTEXT("CTestActive::RunL() - Stopping the scheduler");
184 CActiveScheduler::Stop();
188 //**********************************
190 //**********************************
192 CTestTimer::CTestTimer()
193 : CTimer(EPriorityLow)
196 void CTestTimer::RunL()
198 LOGTEXT("CTestTimer::RunL() - Stopping the scheduler");
199 CActiveScheduler::Stop();
202 CTestTimer* CTestTimer::NewL()
204 CTestTimer* self = new(ELeave) CTestTimer();
205 CleanupStack::PushL(self);
206 self->ConstructL(); // CTimer
207 CActiveScheduler::Add(self);
212 //**********************************
214 //**********************************
216 void TestUtils::Initialize(const TDesC& aName)
219 TheTest.Printf(_L("%S\r\n"), &aName);
220 User::RenameThread(aName);
223 TBool TestUtils::FileExists(const TDesC& aFile)
226 return theFs.Entry(aFile, entry) == KErrNone;
229 //Loads t_loghihelper process and passes for execution to t_loghihelper "aCommandLineArg" command line.
230 //t_loghihelper will run, execute the command and die, returning the result of the command execution.
231 //TestUtils::ExecuteRemoteL() will leave if error and return the result of the remote cmd execution to the caller.
232 TInt TestUtils::ExecuteRemoteL(const TDesC& aCommandLineArg)
235 LEAVE_IF_ERROR(process.Create(KHelperExeName, aCommandLineArg));
237 TRequestStatus status;
238 process.Logon(status);
241 User::WaitForRequest(status);
242 TInt exitReason = process.ExitReason();
245 LEAVE_IF_ERROR(exitReason);
250 //Runs t_loghihelper. t_loghihelper will execute the "delete LogEng database" command.
251 //The "delete LogEng database" is a complex operation. The request is sent via the backup server
252 //which will send a request to the LogEng server to release the LogEng database file locks and close the file.
253 //After that the database will be deleted.
254 //In the same call the LogEng server will restarted and the LogEng server will re-create the database during the
257 //If "aCloseBeforeDelete" flag is false, then the database wil be only deleted.
258 //The default value of "aCloseBeforeDelete" is true: the database will be closed, deleted and re-created.
259 //But some of the LogEng tests create a CBaBackupSessionWrapper object and call CloseFileL() with the logeng
260 //database name as a parameter. In this case, if another process, as t_loghicaphelper for example, attempts
261 //to call CloseFileL() with the same file name as a parameter, then the caller will get KErrServerBusy error.
262 //See how CBaBackupSessionWrapper::CloseFileL() is implemented on the server side.
263 void TestUtils::DeleteDatabaseL(TBool aCloseBeforeDelete)
265 _LIT(KCmdLine1, "-delete_db1");
266 _LIT(KCmdLine2, "-delete_db2");
267 (void)ExecuteRemoteL(aCloseBeforeDelete ? KCmdLine1 : KCmdLine2);
270 //Runs t_loghihelper. t_loghihelper will check and return whether the LogEng database is open or not.
271 TBool TestUtils::IsDatabaseOpenL()
273 _LIT(KCmdLine, "-db_is_open");
274 TInt result = ExecuteRemoteL(KCmdLine);
278 //Runs t_loghihelper. t_loghihelper will add an event type to the LogEng database.
279 void TestUtils::AddEventTypeL()
281 _LIT(KCmdLine, "-add_event_type");
282 (void)ExecuteRemoteL(KCmdLine);
285 //Runs t_loghihelper. t_loghihelper will add an event to the LogEng database.
286 TInt TestUtils::AddEventL()
288 _LIT(KCmdLine, "-add_event");
289 return ExecuteRemoteL(KCmdLine);
292 //Runs t_loghihelper. t_loghihelper will add events to the LogEng database.
293 void TestUtils::AddViewTestEventsL()
295 _LIT(KCmdLine, "-add_view_test_events");
296 (void)ExecuteRemoteL(KCmdLine);
299 //Runs t_loghihelper. t_loghihelper will return the size of the LogEng database.
300 TInt TestUtils::DatabaseSizeL()
302 _LIT(KCmdLine, "-db_size");
303 return ExecuteRemoteL(KCmdLine);
306 //Runs t_loghihelper. t_loghihelper will replace the LogEng database with a corrupted database (for testing purposes).
307 //The LogEng server will be stopped before that. The function can be used only in debug mode.
309 void TestUtils::CopyCorruptDbL()
312 _LIT(KCmdLine, "-copy_corrupt");
313 (void)ExecuteRemoteL(KCmdLine);
316 //Runs t_loghihelper. t_loghihelper will replace the LogEng database with a corrupted database (for testing purposes).
317 //The LogEng server will be stopped before that. The function can be used only in debug mode.
318 void TestUtils::CopyCorruptDamagedDbL()
321 _LIT(KCmdLine, "-copy_corrupt_damaged");
322 (void)ExecuteRemoteL(KCmdLine);
325 //Runs t_loghihelper. t_loghihelper will replace the LogEng database with an old format database
326 //(no SimId column, phone number length is different). The LogEng server will be stopped before that.
327 //The function can be used only in debug mode.
328 void TestUtils::CopyOldDbL()
330 _LIT(KCmdLine, "-copy_old");
331 (void)ExecuteRemoteL(KCmdLine);
334 void TestUtils::CopyCorruptDbL()
336 TheTest.Printf(_L("TestUtils::CopyCorruptDbL() has a meaningfull implementation in debug builds only.\n"));
339 void TestUtils::CopyCorruptDamagedDbL()
341 TheTest.Printf(_L("TestUtils::CopyCorruptDamagedDbL() has a meaningfull implementation in debug builds only.\n"));
344 void TestUtils::CopyOldDbL()
346 TheTest.Printf(_L("TestUtils::CopyOldDbL() has a meaningfull implementation in debug builds only.\n"));
351 //Runs t_loghihelper. t_loghihelper will re-create the LogEng database and check whether LogEng client can connect to the server.
352 void TestUtils::TestInvalidSchemaL()
354 _LIT(KCmdLine, "-invalid_schema");
355 (void)ExecuteRemoteL(KCmdLine);
358 //Runs t_loghihelper. t_loghihelper checks whether the phone number mathcing is enabled.
359 TBool TestUtils::MatchingEnabledL()
361 _LIT(KCmdLine, "-is_matching_enabled");
362 return ExecuteRemoteL(KCmdLine) != 0;
365 //Creates HBufC object and puts it on the cleanup stack.
366 //The buffer will be filled with (' ' + pos) characters, where pos is the character position in the buffer.
367 HBufC* TestUtils::CreateBufLC(TInt aLength)
369 HBufC* buf = HBufC::NewLC(aLength);
370 TPtr ptr = buf->Des();
371 for(TInt pos=0;pos<aLength;++pos)
373 ptr.Append(TChar(' ' + pos));
378 //Returns whether the two filters are equal or not.
379 TBool TestUtils::FiltersEqual(const CLogFilter& aFilter1, const CLogFilter& aFilter2)
381 return aFilter1.EventType() == aFilter2.EventType() &&
382 aFilter1.RemoteParty() == aFilter2.RemoteParty() &&
383 aFilter1.Direction() == aFilter2.Direction() &&
384 aFilter1.DurationType() == aFilter2.DurationType() &&
385 aFilter1.Status() == aFilter2.Status() &&
386 aFilter1.Contact() == aFilter2.Contact() &&
387 aFilter1.Number() == aFilter2.Number()
388 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
390 aFilter1.SimId() == aFilter2.SimId()
395 //Creates HBufC8 object and puts it on the cleanup stack.
396 //The buffer will be filled with (' ' + pos % (0xff - 32)) characters, where pos is the character position in the buffer.
397 HBufC8* TestUtils::CreateBuf8LC(TInt aLength)
399 HBufC8* buf = HBufC8::NewLC(aLength);
400 TPtr8 ptr = buf->Des();
401 for(TInt pos=0;pos<aLength;++pos)
403 ptr.Append(TChar(' ' + pos % (0xff - 32)));
408 //Returns whether the two events are equal or not.
409 TBool TestUtils::EventsEqual(const CLogEvent& aEvent1, const CLogEvent& aEvent2)
411 return aEvent1.Id() == aEvent2.Id() &&
412 aEvent1.EventType() == aEvent2.EventType() &&
413 aEvent1.RemoteParty() == aEvent2.RemoteParty() &&
414 aEvent1.Direction() == aEvent2.Direction() &&
415 aEvent1.Time() == aEvent2.Time() &&
416 aEvent1.DurationType() == aEvent2.DurationType() &&
417 aEvent1.Duration() == aEvent2.Duration() &&
418 aEvent1.Status() == aEvent2.Status() &&
419 aEvent1.Subject() == aEvent2.Subject() &&
420 aEvent1.Number() == aEvent2.Number() &&
421 aEvent1.Contact() == aEvent2.Contact() &&
422 aEvent1.Link() == aEvent2.Link() &&
423 aEvent1.Description() == aEvent2.Description() &&
424 aEvent1.Data() == aEvent2.Data()
425 #ifdef SYMBIAN_ENABLE_EVENTLOGGER_DUALSIM
427 aEvent1.SimId() == aEvent2.SimId()
432 //Returns whether the two event types are equal or not.
433 TBool TestUtils::TypesEqual(const CLogEventType& aType1, const CLogEventType& aType2)
435 return aType1.Uid() == aType2.Uid() &&
436 aType1.Description() == aType2.Description() &&
437 aType1.LoggingEnabled() == aType2.LoggingEnabled();
440 //Waits for a key to be pressed.
441 TBool TestUtils::WaitForKeyL(TTimeIntervalMicroSeconds32 aDelay, TKeyCode& aKeyCode)
443 TEST(TheTest.Console() != NULL);
446 CTestTimer* timer = CTestTimer::NewL();
447 CleanupStack::PushL(timer);
448 timer->After(aDelay);
450 CTestActive* wait = new(ELeave)CTestActive;
451 CleanupStack::PushL(wait);
454 // Wait for key press
455 TheTest.Console()->Read(wait->iStatus);
456 CActiveScheduler::Start();
458 // If timer still active a key was pressed
459 TBool keyPressed = timer->IsActive();
463 // Get the key pressed
464 aKeyCode = TheTest.Console()->KeyCode();
471 // Cancel wait for character
472 TheTest.Console()->ReadCancel();
473 User::WaitForRequest(wait->iStatus);
476 CleanupStack::PopAndDestroy(2); // wait, timer
480 //Used for LogEng server side heap failure testing.
482 void TestUtils::SetLogServHeapFailureL(RHeap::TAllocFail aType, TInt aRate)
484 //this function doesn't have any effect on UREL builds
485 //get rid of warnings in release builds
488 if (!theLogServ.Handle())
489 LEAVE_IF_ERROR(theLogServ.Connect());
491 TIpcArgs ipcArgs(aType,aRate) ;
492 LEAVE_IF_ERROR(theLogServ.Send(ELogSetHeapFail, ipcArgs));
495 void TestUtils::SetLogServHeapFailureL(RHeap::TAllocFail, TInt)
500 //**********************************
501 // CLogViewChangeObserver
502 //**********************************
504 CLogViewChangeObserver* CLogViewChangeObserver::NewLC()
506 CLogViewChangeObserver* self = new(ELeave) CLogViewChangeObserver();
507 CleanupStack::PushL(self);
511 CLogViewChangeObserver::~CLogViewChangeObserver()
517 CLogViewChangeObserver::CLogViewChangeObserver()
518 : CActive(EPriorityStandard)
520 CActiveScheduler::Add(this);
524 CLogChangeDefinition* CLogViewChangeObserver::WaitForChangesLC(TStopType aType, TInt aCount)
526 __ASSERT_ALWAYS(!iSchedulerStarted, User::Invariant());
529 iExpectedChangeCount = aCount;
531 if (aType != EStopOnChanges)
534 iSchedulerStarted = ETrue;
535 CActiveScheduler::Start();
536 iSchedulerStarted = EFalse;
538 CLogChangeDefinition* ret = iChanges;
539 TEST(iChanges != NULL);
541 CleanupStack::PushL(ret);
545 CLogChangeDefinition* CLogViewChangeObserver::WaitForChangesLC(TCallBack aCallBack, TStopType aType, TInt aCount)
547 iHaveCallBack = ETrue;
548 iCallBack = aCallBack;
549 return WaitForChangesLC(aType, aCount);
552 void CLogViewChangeObserver::HandleLogViewChangeEventAddedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount)
554 AddChangeL(ELogChangeTypeEventAdded, aId, aViewIndex);
555 if (aChangeIndex == aTotalChangeCount-1)
556 CheckForSchedulerStop();
559 void CLogViewChangeObserver::HandleLogViewChangeEventChangedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount)
561 AddChangeL(ELogChangeTypeEventChanged, aId, aViewIndex);
562 if (aChangeIndex == aTotalChangeCount-1)
563 CheckForSchedulerStop();
566 void CLogViewChangeObserver::HandleLogViewChangeEventDeletedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount)
568 AddChangeL(ELogChangeTypeEventDeleted, aId, aViewIndex);
569 if (aChangeIndex == aTotalChangeCount-1)
570 CheckForSchedulerStop();
573 void CLogViewChangeObserver::RunL()
575 __ASSERT_ALWAYS(iType == EStopOnRunL || iType == EStopOnBoth, User::Invariant());
576 iHaveFinishedOperation = ETrue;
577 CheckForSchedulerStop();
580 void CLogViewChangeObserver::DoCancel()
582 TRequestStatus* s=&iStatus;
583 User::RequestComplete(s, KErrCancel);
586 void CLogViewChangeObserver::Reset()
588 iExpectedChangeCount = 0;
589 iHaveFinishedOperation = EFalse;
590 iHaveObtainedChanges = EFalse;
591 iSchedulerStarted = EFalse;
592 iType = EStopOnChanges;
597 void CLogViewChangeObserver::CheckForSchedulerStop()
599 if(iSchedulerStarted)
603 iCallBack.CallBack();
604 iCallBack.iFunction = NULL;
605 iCallBack.iPtr = NULL;
606 iHaveCallBack = EFalse;
609 TBool stopScheduler = EFalse;
613 stopScheduler = iHaveObtainedChanges;
616 stopScheduler = iHaveFinishedOperation;
619 stopScheduler = (iHaveObtainedChanges && iHaveFinishedOperation);
624 TEST(iChanges->Count() <= iExpectedChangeCount);
625 stopScheduler = (iChanges->Count() == iExpectedChangeCount);
627 case EDontStopScheduler:
633 LOGTEXT("CLogViewChangeObserver::CheckForSchedulerStop() - Stopping the scheduler");
634 CActiveScheduler::Stop();
639 void CLogViewChangeObserver::AddChangeL(TLogDatabaseChangeType aType, TLogId aId, TInt aViewIndex)
641 CLogChangeDefinition* changes;
647 changes = CLogChangeDefinition::NewL();
648 CleanupStack::PushL(changes);
651 changes->AddL(aId, aType, aViewIndex);
657 CleanupStack::Pop(changes);
660 iHaveObtainedChanges = ETrue;
663 //**********************************
664 // CLogViewChangeObserverErrorTest
665 //**********************************
666 CLogViewChangeObserverErrorTest* CLogViewChangeObserverErrorTest::NewLC()
668 CLogViewChangeObserverErrorTest* self = new(ELeave) CLogViewChangeObserverErrorTest();
669 CleanupStack::PushL(self);
673 CLogViewChangeObserverErrorTest::CLogViewChangeObserverErrorTest()
676 void CLogViewChangeObserverErrorTest::HandleLogViewChangeEventAddedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount)
678 // DEF108741L - the error condition tested here is that a leave is dealt with
679 // gracefully without any panics.
681 // Add a new event to the log
682 AddChangeL(ELogChangeTypeEventAdded, aId, aViewIndex);
683 if (aChangeIndex == aTotalChangeCount-1)
684 CheckForSchedulerStop();
686 // In the test case for DEF108741L this method will be effectively
687 // invoked 3 times. This code forces a leave on the middle event to
688 // ensure that the leave is dealt with and the rest of the test
689 // completes successfully.
696 //**********************************
697 // CLogSchedulerTimer
698 //**********************************
700 CLogSchedulerTimer* CLogSchedulerTimer::NewLC()
702 CLogSchedulerTimer* self = new(ELeave) CLogSchedulerTimer();
703 CleanupStack::PushL(self);
708 CLogSchedulerTimer::~CLogSchedulerTimer()
713 CLogSchedulerTimer::CLogSchedulerTimer()
716 CActiveScheduler::Add(this);
719 void CLogSchedulerTimer::ConstructL()
721 CTimer::ConstructL();
724 void CLogSchedulerTimer::Wait(TTimeIntervalMicroSeconds32 aTime)
727 CActiveScheduler::Start();
730 void CLogSchedulerTimer::RunL()
732 LOGTEXT("CLogSchedulerTimer::RunL() - Stopping the scheduler");
733 CActiveScheduler::Stop();
739 //**********************************
740 // CLogChangeNotifier
741 //**********************************
743 CLogChangeNotifier* CLogChangeNotifier::NewL()
745 CLogChangeNotifier* self = new(ELeave)CLogChangeNotifier();
746 CleanupStack::PushL(self);
748 CleanupStack::Pop(self);
752 CLogChangeNotifier::~CLogChangeNotifier()
758 CLogChangeNotifier::CLogChangeNotifier()
759 : CActive(EPriorityStandard)
761 CActiveScheduler::Add(this);
764 void CLogChangeNotifier::ConstructL()
766 iClient = CLogClient::NewL(theFs);
768 iStart.UniversalTime();
769 iClient->NotifyChange(10000000, iStatus);
773 void CLogChangeNotifier::RunL()
777 TTimeIntervalSeconds seconds;
778 now.SecondsFrom(iStart, seconds);
781 const TInt error = iStatus.Int();
782 if (error == KErrServerTerminated)
784 buf.Format(_L("KErrServerTerminated"));
785 User::InfoPrint(buf);
789 buf.Format(_L("%d seconds"), seconds.Int());
790 User::InfoPrint(buf);
792 iStart.UniversalTime();
793 iClient->NotifyChange(10000000, iStatus);
797 void CLogChangeNotifier::DoCancel()
799 iClient->NotifyChangeCancel();
802 //**********************************
804 //**********************************
806 void SetupSchedulerL()
808 testScheduler = new (ELeave) CActiveScheduler;
809 CleanupStack::PushL( testScheduler );
810 CActiveScheduler::Install( testScheduler );
813 void CloseScheduler()
815 CleanupStack::PopAndDestroy(); // Scheduler
816 testScheduler = NULL;
819 static void CreateLogL()
821 LEAVE_IF_ERROR(theFs.Connect());
823 theLogName.Copy(RProcess().FileName());
824 TInt start = theLogName.LocateReverse('\\');
825 TInt end = theLogName.LocateReverse('.');
826 theLogName = theLogName.Mid(start + 1, end - start - 1);
828 // create the log filename
829 theLogName.Insert(0, _L("C:\\"));
830 #if defined(__WINS__)
831 theLogName.Append(_L(".WINS."));
833 theLogName.Append(_L(".MARM."));
835 #if defined(_UNICODE)
836 theLogName.Append(_L("UNICODE."));
838 theLogName.Append(_L("ASCII."));
841 theLogName.Append(_L("DEB."));
843 theLogName.Append(_L("REL."));
845 theLogName.Append(_L("LOG"));
847 // create the logfile
848 LEAVE_IF_ERROR(theLog.Replace(theFs, theLogName, EFileWrite|EFileShareExclusive));
850 text.Copy(theLogName);
852 theLog.Write(_L8("\nTest results\n"));
855 static void CloseLog()
857 theLog.Write(_L8("Tests completed\n"));
858 TheTest.Printf(_L("Results saved in %S\n"), &theLogName);
863 void DeleteDataFile(const TDesC& aFullName)
866 TInt err = fsSession.Connect();
870 if(fsSession.Entry(aFullName, entry) == KErrNone)
872 TheTest.Printf(_L("Deleting \"%S\" file.\n"), &aFullName);
873 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
876 TheTest.Printf(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
878 err = fsSession.Delete(aFullName);
881 TheTest.Printf(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
888 TheTest.Printf(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
892 static void Cleanup(void*)
894 TRAP_IGNORE(TestUtils::DeleteDatabaseL());
895 ::DeleteDataFile(theLogName);
898 static void DoMainL()
901 TCleanupItem cleanup(&Cleanup, NULL);
902 CleanupStack::PushL(cleanup);
906 CleanupStack::PopAndDestroy();//cleanup
914 theCleanup = CTrapCleanup::New();
917 _LIT(KLogHiCapHelperPanic, "LogTestPanic");
918 User::Panic(KLogHiCapHelperPanic, KErrNoMemory);
921 TRAPD(err, ::DoMainL());
922 TEST2(err, KErrNone);
926 TheTest.Console()->SetPos(0, 13);