os/persistentdata/persistentstorage/dbms/tdbms/t_dbstress.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1998-2009 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 
    16 #include "t_dbstress.h"
    17 
    18 //#define __DUMP_STATE
    19 #if defined(__WINS__)
    20 //#define _INSTALL_FILE_SYSTEM
    21 #endif
    22 
    23 GLDEF_D RTest TheTest(_L("t_dbstress: Stress testing DBMS"));
    24 
    25 GLDEF_D TPtrC KTestDir=_S("\\DBMS-TST\\");
    26 GLDEF_D TPtrC KLogFile=_L("T_STRESS.LOG");
    27 GLDEF_D TPtrC KTestDatabase=_S("T_STRESS.DB");
    28 GLDEF_D TInt NewCount,OldCount;
    29 GLDEF_D TInt TransId;
    30 GLDEF_D Timer RunTimer;
    31 
    32 
    33 LOCAL_D RFs TheFs;
    34 LOCAL_D RThread TheThread;
    35 LOCAL_D TRequestStatus TheStatus;
    36 LOCAL_D RDbStoreDatabase TheDatabase;
    37 LOCAL_D RDbView Accs;
    38 LOCAL_D RDbView Trans;
    39 LOCAL_D RDbTable TheTable;
    40 LOCAL_D TInt Shot,ShotDuringCommit;
    41 LOCAL_D TInt64 RunningTime(1);
    42 LOCAL_D Timer Stopwatch;
    43 
    44 #ifdef __DUMP_STATE
    45 const TPtrC KDumpFile=_S("T_STRESS.DMP");
    46 #endif
    47 const TInt KTestCleanupStack=0x20;
    48 
    49 void Timer::Start()
    50 	{
    51 	iTime.UniversalTime();
    52 	}
    53 
    54 TInt64 Timer::Stop()
    55 	{
    56 	TTime t;
    57 	t.UniversalTime();
    58 	return ((t.MicroSecondsFrom(iTime).Int64()) + 500)/1000;
    59 	}
    60 
    61 void Timer::Print()
    62 	{
    63 	TInt64 milli=Stop();
    64 	TheTest.Printf(_L("  %u milliseconds\n"), I64LOW(milli) );
    65 	}
    66 
    67 class Set
    68 	{
    69 public:
    70 	struct SColDef
    71 		{
    72 		const TDesC* iName;
    73 		TDbColType iType;
    74 		TInt iAttributes;
    75 		};
    76 public:
    77 	static CDbColSet* CreateL(const SColDef* aDef);
    78 	};
    79 CDbColSet* Set::CreateL(const SColDef* aDef)
    80 	{
    81 	CDbColSet *set=CDbColSet::NewLC();
    82 	for (;aDef->iName!=NULL;++aDef)
    83 		{
    84 		TDbCol col(*aDef->iName,aDef->iType);
    85 		col.iAttributes=aDef->iAttributes;
    86 		set->AddL(col);
    87 		}
    88 	CleanupStack::Pop();
    89 	return set;
    90 	}
    91 
    92 // Accounts table
    93 const TPtrC KAccounts=_S("ACCOUNTS");
    94 const TPtrC KAccountsID=_S("ID");
    95 const TPtrC KAccountsBalance=_S("BALANCE");
    96 const TPtrC KAccountsStatement=_S("STATEMENT_BALANCE");
    97 Set::SColDef const AccountsDef[]=
    98 	{
    99 	{&KAccountsID,EDbColInt32,TDbCol::ENotNull},
   100 	{&KAccountsBalance,EDbColInt32,TDbCol::ENotNull},
   101 	{&KAccountsStatement,EDbColInt32,TDbCol::ENotNull},
   102 	{0}
   103 	};
   104 const TInt KInitialCash=100000;
   105 const TInt KInitialBalance=1000;
   106 
   107 // Transaction table
   108 const TPtrC KTransactions=_S("TRANSACTIONS");
   109 const TPtrC KTransactionDate=_S("T_DATE");
   110 const TPtrC KTransactionFrom=_S("FROM_ID");
   111 const TPtrC KTransactionTo=_S("TO_ID");
   112 const TPtrC KTransactionAmount=_S("AMOUNT");
   113 Set::SColDef const TransactionsDef[]=
   114 	{
   115 //	{&KTransactionDate,EDbColDateTime,TDbCol::ENotNull},
   116 	{&KTransactionDate,EDbColInt32,TDbCol::ENotNull},
   117 	{&KTransactionFrom,EDbColInt32,TDbCol::ENotNull},
   118 	{&KTransactionTo,EDbColInt32,TDbCol::ENotNull},
   119 	{&KTransactionAmount,EDbColInt32,TDbCol::ENotNull},
   120 	{0}
   121 	};
   122 
   123 LOCAL_D TInt32 TotalMonies;
   124 LOCAL_D TBuf<100> Buf;
   125 
   126 GLDEF_C TInt Random(TInt aRange)
   127 	{
   128 	return (Math::Random()>>11)%aRange;
   129 	}
   130 
   131 ///////////////////////////////////////////////////////////////////////////////////////
   132 ///////////////////////////////////////////////////////////////////////////////////////
   133 
   134 TPtrC FileName(const TText* aFile)
   135     {
   136     TPtrC p(aFile);
   137     TInt ix=p.LocateReverse('\\');
   138     if (ix<0)
   139         ix=p.LocateReverse('/');
   140     if (ix>=0)
   141         p.Set(p.Mid(1+ix));
   142     return p;
   143     }
   144 
   145 //Test macros and functions
   146 void Check1(TInt aValue, const TText* aFile, TInt aLine)
   147     {
   148     if(!aValue)
   149         {
   150         TPtrC fname(FileName(aFile));
   151         TheTest.Printf(_L("*** Expression evaluated to false. %S-%d\r\n"), &fname, aLine);
   152         TheTest(EFalse, aLine);
   153         }
   154     }
   155 void Check2(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine)
   156     {
   157     if(aValue != aExpected)
   158         {
   159         TPtrC fname(FileName(aFile));
   160         TheTest.Printf(_L("*** Expected %d, got %d. %S-%d\r\n"), aExpected, aValue, &fname, aLine);
   161         TheTest(EFalse, aLine);
   162         }
   163     }
   164 
   165 ///////////////////////////////////////////////////////////////////////////////////////
   166 
   167 LOCAL_C void CreateIndexL(RDbDatabase& aDatabase,const TDesC& aTable,const TDesC& aColumn,TBool aUnique)
   168 	{
   169 	CDbKey* key=CDbKey::NewLC();
   170 	key->AddL(aColumn);
   171 	if (aUnique)
   172 		key->MakeUnique();
   173 	TEST2(aDatabase.CreateIndex(aColumn,aTable,*key),KErrNone);
   174 	CleanupStack::PopAndDestroy();
   175 	}
   176 
   177 //
   178 // Create the database
   179 //
   180 LOCAL_C void CreateDatabaseL()
   181 	{
   182 	CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,KTestDatabase,EFileRead|EFileWrite);
   183 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   184 	store->SetRootL(TheDatabase.CreateL(store));
   185 //	create the tables
   186 	TheDatabase.Begin();
   187 	CDbColSet* set=Set::CreateL(AccountsDef);
   188 	TEST2(TheDatabase.CreateTable(KAccounts,*set),KErrNone);
   189 	delete set;
   190 	CreateIndexL(TheDatabase,KAccounts,KAccountsID,ETrue);
   191 	CreateIndexL(TheDatabase,KAccounts,KAccountsBalance,EFalse);
   192 	set=Set::CreateL(TransactionsDef);
   193 	TEST2(TheDatabase.CreateTable(KTransactions,*set),KErrNone);
   194 	delete set;
   195 	CreateIndexL(TheDatabase,KTransactions,KTransactionDate,EFalse);
   196 	TEST2(TheDatabase.Commit(),KErrNone);
   197 	OldCount=NewCount=0;
   198 // prepare Accs table
   199 	TheDatabase.Begin();
   200 	TEST2(Accs.Prepare(TheDatabase,_L("select * from accounts"),Accs.EInsertOnly),KErrNone);
   201 	Accs.InsertL();
   202 	Accs.SetColL(1,TInt32(ECash));
   203 	Accs.SetColL(2,KInitialCash);
   204 	Accs.SetColL(3,KInitialCash);
   205 	Accs.PutL();
   206 	TotalMonies=KInitialCash;
   207 	for (TInt ii=EJohn;ii<=EPenny;++ii)
   208 		{
   209 		Accs.InsertL();
   210 		Accs.SetColL(1,ii);
   211 		Accs.SetColL(2,KInitialBalance);
   212 		Accs.SetColL(3,KInitialBalance);
   213 		Accs.PutL();
   214 		TotalMonies+=KInitialBalance;
   215 		}
   216 	TEST2(TheDatabase.Commit(),KErrNone);
   217 	Accs.Close();
   218 	TheDatabase.Close();
   219 	CleanupStack::PopAndDestroy();	// store
   220 	}
   221 
   222 
   223 #ifdef __DUMP_STATE
   224 LOCAL_C void DumpStateL()
   225 	{
   226 	RFile file;
   227 	CleanupClosePushL(file);
   228 	User::LeaveIfError(file.Replace(TheFs,KLogFile,EFileWrite|EFileStreamText));
   229 	RDbRowSet::RConstraint match;
   230 	CleanupClosePushL(match);
   231 	for (TInt id=ECash;id<=EPenny;++id)
   232 		{
   233 		Buf.Format(_L("id=%d"),id);
   234 		Accs.FirstL();
   235 		TEST(Accs.FindL(Accs.EForwards,Buf)>=0);
   236 		Accs.GetL();
   237 		TInt balance=Accs.ColInt(2);
   238 		Buf.Format(_L("\nStatement for account %d: Previous balance %d\n"),id,balance);
   239 		User::LeaveIfError(file.Write(Buf));
   240 		Buf.Format(_L("from_id=%d or to_id=%d"),id,id);
   241 		User::LeaveIfError(match.Open(Trans,Buf));
   242 		for (Trans.BeginningL();Trans.NextL();)
   243 			{
   244 			if (Trans.MatchL(match))
   245 				{
   246 				Trans.GetL();
   247 				TInt from=Trans.ColInt(2);
   248 				TInt amount=Trans.ColInt(4);
   249 				Buf.Format(_L("%04d: %6s %5d\n"),Trans.ColInt(1),from==id?_S("debit"):_S("credit"),amount);
   250 				User::LeaveIfError(file.Write(Buf));
   251 				if (from==id)
   252 					balance-=amount;
   253 				else
   254 					balance+=amount;
   255 				}
   256 			}
   257 		Buf.Format(_L("Closing balance %d\n"),balance);
   258 		User::LeaveIfError(file.Write(Buf));
   259 		Buf.Format(_L("Account balance %d\n"),Accs.ColInt(3));
   260 		User::LeaveIfError(file.Write(Buf));
   261 		}
   262 	CleanupStack::PopAndDestroy(2);
   263 	TEST(0);
   264 	}
   265 #endif
   266 
   267 //
   268 // Check that the database structure is fully intact
   269 //
   270 LOCAL_C void VerifyDatabaseL(CPersistentStore& aStore)
   271 	{
   272 	TheDatabase.OpenL(&aStore,aStore.Root());
   273 // check any indexes
   274 	TEST2(TheTable.Open(TheDatabase,KAccounts,TheTable.EReadOnly),KErrNone);
   275 	TEST2(TheTable.CountL(),KAccountIDs);
   276 	TInt r=TheTable.SetIndex(KAccountsID);
   277 	if (r!=KErrCorrupt)
   278 		{
   279 		TEST2(r,KErrNone);
   280 		TEST2(TheTable.CountL(),KAccountIDs);
   281 		for (TInt id=ECash;id<=EPenny;++id)
   282 			{
   283 			TEST(TheTable.NextL());
   284 			TheTable.GetL();
   285 			TEST2(TheTable.ColInt(1),id);
   286 			}
   287 		TEST(!TheTable.NextL());
   288 		}
   289 	r=TheTable.SetIndex(KAccountsBalance);
   290 	if (r!=KErrCorrupt)
   291 		{
   292 		TEST2(r,KErrNone);
   293 		TEST2(TheTable.CountL(),KAccountIDs);
   294 		TEST(TheTable.FirstL());
   295 		TheTable.GetL();
   296 		TInt last=TheTable.ColInt(2);
   297 		for (TInt ii=1;ii<KAccountIDs;++ii)
   298 			{
   299 			TEST(TheTable.NextL());
   300 			TheTable.GetL();
   301 			TInt bal=TheTable.ColInt(2);
   302 			TEST(bal>=last);
   303 			last=bal;
   304 			}
   305 		TEST(!TheTable.NextL());
   306 		}
   307 	TheTable.Close();
   308 	TEST2(TheTable.Open(TheDatabase,KTransactions,TheTable.EReadOnly),KErrNone);
   309 	TInt count=TheTable.CountL();
   310 	r=TheTable.SetIndex(KTransactionDate);
   311 	if (r!=KErrCorrupt)
   312 		{
   313 		TEST2(r,KErrNone);
   314 		TEST2(TheTable.CountL(),count);
   315 		if (count)
   316 			{
   317 			TEST(TheTable.FirstL());
   318 			TheTable.GetL();
   319 			TInt last=TheTable.ColInt(1);
   320 			while (--count!=0)
   321 				{
   322 				TEST(TheTable.NextL());
   323 				TheTable.GetL();
   324 				TInt date=TheTable.ColInt(1);
   325 				TEST(date>last);
   326 				last=date;
   327 				}
   328 			TEST(!TheTable.NextL());
   329 			}
   330 		else
   331 			TEST(!TheTable.FirstL());
   332 		}
   333 	TheTable.Close();
   334 // verify database integrity
   335 	TInt balance[KAccountIDs];
   336 	TEST2(Accs.Prepare(TheDatabase,_L("select id,statement_balance,balance from accounts"),Accs.EReadOnly),KErrNone);
   337 	TEST2(Accs.CountL(),KAccountIDs);
   338 	while (Accs.NextL())
   339 		{
   340 		Accs.GetL();
   341 		TInt id=Accs.ColInt(1);
   342 		balance[id]=Accs.ColInt(2);
   343 		}
   344 	TEST2(Trans.Prepare(TheDatabase,_L("select t_date,from_id,to_id,amount from Transactions"),Trans.EReadOnly),KErrNone);
   345 	TInt transact=0;
   346 	while (Trans.NextL())
   347 		{
   348 		++transact;
   349 		Trans.GetL();
   350 		TInt from=Trans.ColInt(2);
   351 		TInt to=Trans.ColInt(3);
   352 		TInt amount=Trans.ColInt(4);
   353 		balance[from]-=amount;
   354 		balance[to]+=amount;
   355 		}
   356 	TEST2(transact,Trans.CountL());
   357 	if (NewCount!=-1 && transact!=NewCount)
   358 		{
   359 		TEST2(transact,OldCount);
   360 		++ShotDuringCommit;
   361 		}
   362 	OldCount=NewCount=transact;
   363 	TInt total=0;
   364 	for (Accs.BeginningL();Accs.NextL();)
   365 		{
   366 		Accs.GetL();
   367 		TInt id=Accs.ColInt(1);
   368 #ifdef __DUMP_STATE
   369 		if (balance[id]!=Accs.ColInt(3))
   370 			DumpStateL();
   371 #else
   372 		TEST(balance[id]==Accs.ColInt(3));
   373 #endif
   374 		total+=balance[id];
   375 		}
   376 	TEST2(total,TotalMonies);
   377 	Trans.Close();
   378 	Accs.Close();
   379 	TheDatabase.Close();
   380 	}
   381 
   382 LOCAL_C TInt Verify(CPersistentStore& aStore)
   383 	{
   384 	TRAPD(r,VerifyDatabaseL(aStore));
   385 	return r;
   386 	}
   387 
   388 LOCAL_C TInt Recover(CPersistentStore& aStore)
   389 	{
   390 	TRAPD(r,TheDatabase.OpenL(&aStore,aStore.Root()));
   391 	if (r==KErrNone)
   392 		{
   393 		r=TheDatabase.Recover();
   394 		TheDatabase.Close();
   395 		}
   396 	return r;
   397 	}
   398 
   399 LOCAL_C void CompactL(CStreamStore& aStore)
   400 	{
   401 	TInt t=aStore.ReclaimL();
   402 	Stopwatch.Start();
   403 	t-=aStore.CompactL();
   404 	TheTest.Printf(_L("  compacted %d byte(s) in"),t);
   405 	Stopwatch.Print();
   406 	aStore.CommitL();
   407 	}
   408 
   409 LOCAL_C TInt Compact(CStreamStore& aStore)
   410 	{
   411 	TRAPD(r,CompactL(aStore));
   412 	return r;
   413 	}
   414 
   415 LOCAL_C TInt EndThread()
   416 	{
   417 	RunningTime+=RunTimer.Stop();
   418 	if (TheStatus==KRequestPending)
   419 		TheThread.Kill(1);
   420 	User::WaitForRequest(TheStatus);
   421 	TInt r;
   422 	if (TheThread.ExitType()==EExitKill)
   423 		r=TheThread.ExitReason();
   424 	else
   425 		r=TheStatus.Int();
   426 	TheThread.Close();
   427 	return r;
   428 	}
   429 
   430 //aTestExecutionTime - desired test execution time in minutes
   431 LOCAL_C void RunTestL(TInt aTestExecutionTime = 0)
   432 	{
   433 	__ASSERT_ALWAYS(aTestExecutionTime >= 0, User::Invariant());
   434 
   435 	RThread().SetPriority(EPriorityMore);
   436 	TheTest.Start(_L("Create the database"));
   437 	CreateDatabaseL();
   438 
   439 	TTimeIntervalMinutes timeInterval(aTestExecutionTime);
   440 
   441 	TTime timeCurrent;
   442 	timeCurrent.UniversalTime();
   443 	TTime timeEnd(timeCurrent);
   444 	timeEnd += timeInterval;
   445 
   446 	for (TBool condition=ETrue; condition; condition = aTestExecutionTime > 0 ? (timeCurrent < timeEnd) : ETrue)
   447 		{
   448 		TheTest.Next(_L("Main loop"));
   449 		TheTest.Start(_L("Kick off the thread"));
   450 		TEST2 (StartThread(TheThread,TheStatus),KErrNone);
   451 		// random delay
   452 		for (;;)
   453 			{
   454 			User::After(95000);
   455 			if (TheStatus!=KRequestPending)
   456 				break;
   457 			if (Random(1000)<30)
   458 				break;
   459 			}
   460 		TheTest.Next(_L("End the thread"));
   461 		TInt exit=EndThread();
   462 		if (exit!=1)
   463 		    TheTest.Printf(_L("  thread failed with error %d\n"),exit);
   464 //
   465 		++Shot;
   466 		CFileStore* store=NULL;
   467 		for (TInt ii=0;;++ii)
   468 			{
   469 			TheTest.Printf(_L("Opening %d\r"),ii);
   470 			TRAPD(r,store=CFileStore::OpenL(TheFs,KTestDatabase,EFileRead|EFileWrite|EFileWriteDirectIO));
   471 			if (r==KErrNone)
   472 				break;
   473 			TEST2(r, KErrInUse);
   474 			User::After(100000);
   475 			}
   476 		TheTest.Next(_L("Verify & Recover"));
   477 		TEST2 (Verify(*store),KErrNone);
   478 		TInt64 tps(TransId);
   479 		tps*=1000u;
   480 		tps/=RunningTime;
   481 		TheTest.Printf(_L("    Iteration %d, TPS %d, during commit %d%%\n"),Shot,I64LOW(tps),(100*ShotDuringCommit)/Shot);
   482 		TInt r=Recover(*store);
   483 		if (r==KErrNoMemory || r==KErrDiskFull)
   484 			{	// need to compact before completing recovery
   485 			TheTest.Next(_L("No space, compacting"));
   486 			TEST2 (Compact(*store),KErrNone);
   487 			TheTest.Next(_L("Verify & Recover again"));
   488 			TEST2 (Verify(*store),KErrNone);
   489 			r=Recover(*store);
   490 			}
   491 		TEST2 (r,KErrNone);
   492 		TheTest.Next(_L("Verify & Compact"));
   493 //		TEST2 (Verify(*store),KErrNone);
   494 		TEST2 (Compact(*store),KErrNone);
   495 		TheTest.Next(_L("Verify"));
   496 		TEST2 (Verify(*store),KErrNone);
   497 //
   498 		delete store;
   499 		TheTest.End();
   500 
   501 		timeCurrent.UniversalTime();
   502 		}
   503 	TheTest.End();
   504 	}
   505 
   506 /**
   507 @SYMTestCaseID          SYSLIB-DBMS-CT-0636
   508 @SYMTestCaseDesc        DBMS stess testing.
   509 @SYMTestPriority        Medium
   510 @SYMTestActions         Tests for verifying the database integrity.
   511 @SYMTestExpectedResults Test must not fail
   512 @SYMREQ                 REQ0000
   513 */
   514 static void RunVerify()
   515 	{
   516 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0636 Open store "));
   517 	CFileStore* store=NULL;
   518 	TRAPD(r,store=CFileStore::OpenL(TheFs,KTestDatabase,EFileRead|EFileWrite|EFileWriteDirectIO));
   519 	TEST2 (r,KErrNone);
   520 	TheTest.Next(_L("Verify"));
   521 	NewCount=-1;
   522 	TotalMonies=KInitialCash + (EPenny-EJohn+1)*KInitialBalance;
   523 	TEST2 (Verify(*store),KErrNone);
   524 	TheTest.Next(_L("Recover"));
   525 	TEST2 (Recover(*store),KErrNone);
   526 	TheTest.Next(_L("Verify"));
   527 	TEST2 (Verify(*store),KErrNone);
   528 	delete store;
   529 	TheTest.End();
   530 	}
   531 
   532 //
   533 // Prepare the test directory.
   534 //
   535 LOCAL_C void setupTestDirectory()
   536     {
   537 	TInt r=TheFs.Connect();
   538 	TEST2(r,KErrNone);
   539 //
   540 	r=TheFs.MkDir(KTestDir);
   541 	TEST(r==KErrNone || r==KErrAlreadyExists);
   542 	r=TheFs.SetSessionPath(KTestDir);
   543 	TEST2(r,KErrNone);
   544 	}
   545 
   546 //
   547 // Initialise the cleanup stack.
   548 //
   549 LOCAL_C CTrapCleanup* setupCleanup()
   550     {
   551 	CTrapCleanup* cleanup=CTrapCleanup::New();
   552 	TEST(cleanup!=NULL);
   553 	TRAPD(r,\
   554 		{\
   555 		for (TInt i=KTestCleanupStack;i>0;i--)\
   556 			CleanupStack::PushL((TAny*)0);\
   557 		CleanupStack::Pop(KTestCleanupStack);\
   558 		});
   559 	TEST2(r,KErrNone);
   560 	return cleanup;
   561 	}
   562 
   563 //
   564 // entry point
   565 //
   566 // Parameters usage:
   567 //	t_stress [-v]|[0]|[<positive number>]
   568 // Where:
   569 //	-v - a verification test will be run;
   570 //	0  - a stress test will be run for indefinite time;
   571 //	<positive number>  - a stress test will be run for <positive number> minutes;
   572 // If the test is run without arguments, the test execution time will be 10 minutes
   573 // (KDefaultTestExecutionTime constant bellow).
   574 GLDEF_C TInt E32Main()
   575     {
   576     TheTest.Title();
   577 	setupTestDirectory();
   578 	CTrapCleanup* cleanup=setupCleanup();
   579 	__UHEAP_MARK;
   580 //
   581 	TBuf<100> cmd;
   582     User::CommandLine(cmd);
   583 	TLex lex(cmd);
   584 	TInt err = KErrNone;
   585 	for(;;)
   586 		{
   587 		TPtrC arg(lex.NextToken());
   588 		if(arg.Length() == 0)
   589 			{
   590 			const TInt KDefaultTestExecutionTime = 10;//default test execution time - minutes
   591 			TRAP(err, RunTestL(KDefaultTestExecutionTime));
   592 			break;
   593 			}
   594 		else if(arg.CompareF(_L("-v")) == 0)
   595 			{
   596 			RunVerify();
   597 			break;
   598 			}
   599 		else
   600 			{
   601 			TInt32 testExecutionTime = 0;
   602 			lex.Assign(arg);
   603 			(void)lex.Val(testExecutionTime);
   604 			TRAP(err, RunTestL(testExecutionTime));
   605 			break;
   606 			}
   607 		}
   608 	TInt err2 = TheFs.Delete(KTestDatabase);
   609 	if(err2 != KErrNone)
   610 		{
   611 		RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err2, &KTestDatabase);
   612 		}
   613 	err2 = TheFs.Delete(KLogFile);
   614 	if(err2 != KErrNone)
   615 		{
   616 		RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err2, &KLogFile);
   617 		}
   618 	TEST2(err, KErrNone);
   619 //
   620 	__UHEAP_MARKEND;
   621 	delete cleanup;
   622 	TheFs.Close();
   623 	TheTest.Close();
   624 	return 0;
   625     }