os/persistentdata/persistentstorage/sql/TEST/t_sqlperformance5.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description: MDS harvesting performance test
sl@0
    14
//
sl@0
    15
#include <e32test.h>
sl@0
    16
#include <e32math.h>
sl@0
    17
#include <bautils.h>
sl@0
    18
#include <hal.h>
sl@0
    19
#include <sqldb.h>
sl@0
    20
#include "t_sqlcmdlineutil.h"
sl@0
    21
sl@0
    22
RTest 			TheTest(_L("t_sqlperformance5 test"));
sl@0
    23
RSqlDatabase 	TheDb;
sl@0
    24
sl@0
    25
_LIT(KDbName, 	"c:\\test\\t_sqlperformance5.db");
sl@0
    26
sl@0
    27
TFileName		TheDbFileName;
sl@0
    28
TBuf<200> 		TheTestTitle;
sl@0
    29
TCmdLineParams 	TheCmdLineParams(TCmdLineParams::EDbUtf16, 16384, 32);
sl@0
    30
TBuf8<200> 		TheSqlConfigString;
sl@0
    31
sl@0
    32
_LIT(KUtf8,  "UTF8 ");
sl@0
    33
_LIT(KUtf16, "UTF16");
sl@0
    34
sl@0
    35
const TInt KThumbnailCount = 60;
sl@0
    36
const TInt KMaxThumbnailSize = 40 * 1024;
sl@0
    37
sl@0
    38
const TInt KThumbnailSizes[KThumbnailCount] = 
sl@0
    39
		{
sl@0
    40
		//1    2      3      4      5      6      7      8      9      10
sl@0
    41
		22054, 24076, 33281, 24733, 33094, 31443, 29264, 28725, 31798, 29322, //1
sl@0
    42
		25002, 26926, 31097, 21988, 33659, 29081, 33050, 36857, 37686, 24034, //2
sl@0
    43
		21093, 28314, 20186, 27222, 28600, 32735, 27279, 31898, 31380, 36316, //3
sl@0
    44
		34295, 31642, 21829, 32912, 31584, 32557, 36601, 22744, 32808, 26130, //4
sl@0
    45
		31222, 21545, 35899, 22257, 25856, 31169, 34893, 23496, 23034, 30381, //5
sl@0
    46
		25810, 27123, 33442, 22275, 30260, 31028, 32415, 27345, 26614, 33704  //6
sl@0
    47
		};
sl@0
    48
sl@0
    49
TInt TheFastCounterFreq = 0;
sl@0
    50
sl@0
    51
TInt TheCreateDbTime = 0;
sl@0
    52
TInt TheCreateTablesTime = 0;
sl@0
    53
TInt TheBindParamsTime = 0;
sl@0
    54
TInt TheStmtExecTime = 0;
sl@0
    55
TInt TheStmtResetTime = 0;
sl@0
    56
TInt ThePopulateTempTableTime = 0;
sl@0
    57
TInt TheFlushTime = 0;
sl@0
    58
sl@0
    59
////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    60
sl@0
    61
void TestEnvDestroy()
sl@0
    62
	{
sl@0
    63
	TheDb.Close();
sl@0
    64
	(void)RSqlDatabase::Delete(TheDbFileName);
sl@0
    65
	ResetSoftHeapLimit();
sl@0
    66
	}
sl@0
    67
sl@0
    68
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    69
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    70
//Test macros and functions
sl@0
    71
void Check1(TInt aValue, TInt aLine)
sl@0
    72
	{
sl@0
    73
	if(!aValue)
sl@0
    74
		{
sl@0
    75
		TestEnvDestroy();
sl@0
    76
		TheTest.Printf(_L("*** Line %d\r\n"), aLine);
sl@0
    77
		TheTest(EFalse, aLine);
sl@0
    78
		}
sl@0
    79
	}
sl@0
    80
void Check2(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    81
	{
sl@0
    82
	if(aValue != aExpected)
sl@0
    83
		{
sl@0
    84
		TSqlRetCodeClass cl = SqlRetCodeClass(aValue);
sl@0
    85
		if(cl == ESqlDbError)
sl@0
    86
			{
sl@0
    87
			TPtrC errmsg = TheDb.LastErrorMessage();
sl@0
    88
			TheTest.Printf(_L("*** SQLite err=\"%S\"\r\n"), &errmsg);
sl@0
    89
			}
sl@0
    90
		TestEnvDestroy();
sl@0
    91
		TheTest.Printf(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
sl@0
    92
		TheTest(EFalse, aLine);
sl@0
    93
		}
sl@0
    94
	}
sl@0
    95
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
    96
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    97
sl@0
    98
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    99
sl@0
   100
void TestEnvInit()
sl@0
   101
	{
sl@0
   102
	RFs fs;
sl@0
   103
	TInt err = fs.Connect();
sl@0
   104
	TEST2(err, KErrNone);
sl@0
   105
	err = fs.MkDirAll(TheDbFileName);
sl@0
   106
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   107
	fs.Close();
sl@0
   108
	}
sl@0
   109
sl@0
   110
TInt TimeDiffUs(TUint32 aStartTicks, TUint32 aEndTicks)
sl@0
   111
	{
sl@0
   112
	if(TheFastCounterFreq == 0)
sl@0
   113
		{
sl@0
   114
		TEST2(HAL::Get(HAL::EFastCounterFrequency, TheFastCounterFreq), KErrNone);
sl@0
   115
		TheTest.Printf(_L("==Fast counter frequency: %d Hz\r\n"), TheFastCounterFreq);
sl@0
   116
		}
sl@0
   117
	TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
sl@0
   118
	if(diffTicks < 0)
sl@0
   119
		{
sl@0
   120
		diffTicks = KMaxTUint32 + diffTicks + 1;
sl@0
   121
		}
sl@0
   122
	const TInt KMicroSecIn1Sec = 1000000;
sl@0
   123
	TInt us = (diffTicks * KMicroSecIn1Sec) / TheFastCounterFreq;
sl@0
   124
	return us;
sl@0
   125
	}
sl@0
   126
sl@0
   127
void PrintTime(const TDesC& aFmt, TUint32 aStartTicks, TUint32 aEndTicks)
sl@0
   128
	{
sl@0
   129
	TInt us = TimeDiffUs(aStartTicks, aEndTicks);
sl@0
   130
	TheTest.Printf(aFmt, us);
sl@0
   131
	}
sl@0
   132
sl@0
   133
//=============================================================================
sl@0
   134
sl@0
   135
/**
sl@0
   136
@SYMTestCaseID			PDS-SQL-CT-4205
sl@0
   137
@SYMTestCaseDesc		Thumbnail database performance test.
sl@0
   138
@SYMTestPriority		Medium
sl@0
   139
@SYMTestActions			The test executes statements to create the thumbnail database.  
sl@0
   140
@SYMTestExpectedResults The test must not fail
sl@0
   141
@SYMDEF					ou1cimx1#362240
sl@0
   142
*/
sl@0
   143
void CreateDb()
sl@0
   144
	{
sl@0
   145
	(void)RSqlDatabase::Delete(TheDbFileName);
sl@0
   146
	
sl@0
   147
	TUint32 fc1 = User::FastCounter();
sl@0
   148
	
sl@0
   149
	TInt err = TheDb.Create(TheDbFileName, &TheSqlConfigString);
sl@0
   150
	
sl@0
   151
	TUint32 fc2 = User::FastCounter();
sl@0
   152
	TheCreateDbTime = TimeDiffUs(fc1, fc2);
sl@0
   153
	
sl@0
   154
	TEST2(err, KErrNone);
sl@0
   155
sl@0
   156
	fc1 = User::FastCounter();
sl@0
   157
	
sl@0
   158
	err = TheDb.Exec(_L("CREATE TABLE ThumbnailInfo (Path TEXT COLLATE NOCASE,TNId INTEGER,Size INTEGER,Format INTEGER,TNPath TEXT COLLATE NOCASE,Width INTEGER,Height INTEGER,OrigWidth INTEGER,OrigHeight INTEGER,Flags INTEGER,VideoPosition INTEGER,Orientation INTEGER,humbFromPath INTEGER,Modified LARGEINT);"));
sl@0
   159
	TEST(err >= 0);
sl@0
   160
sl@0
   161
	err = TheDb.Exec(_L("CREATE TABLE ThumbnailInfoData(Data BLOB);"));
sl@0
   162
	TEST(err >= 0);
sl@0
   163
	
sl@0
   164
	err = TheDb.Exec(_L("CREATE TABLE ThumbnailDeleted(Path TEXT UNIQUE COLLATE NOCASE);"));
sl@0
   165
	TEST(err >= 0);
sl@0
   166
	
sl@0
   167
	err = TheDb.Exec(_L("CREATE INDEX idx1 ON ThumbnailInfo(Path, Size);"));
sl@0
   168
	TEST(err >= 0);
sl@0
   169
	
sl@0
   170
	err = TheDb.Exec(_L("CREATE INDEX idx4 ON ThumbnailDeleted(Path);"));
sl@0
   171
	TEST(err >= 0);
sl@0
   172
sl@0
   173
	err = TheDb.Exec(_L("CREATE TABLE ThumbnailVersion (Major INTEGER,Minor INTEGER,IMEI TEXT COLLATE NOCASE);"));
sl@0
   174
	TEST(err >= 0);
sl@0
   175
sl@0
   176
	fc2 = User::FastCounter();
sl@0
   177
	TheCreateTablesTime = TimeDiffUs(fc1, fc2);
sl@0
   178
	
sl@0
   179
	TheDb.Close();
sl@0
   180
	}
sl@0
   181
sl@0
   182
void PoulateTempTables(RSqlStatement& aStmt1, RSqlStatement& aStmt2)
sl@0
   183
	{
sl@0
   184
	HBufC8* thumbnailBuf = HBufC8::New(KMaxThumbnailSize);
sl@0
   185
	TEST(thumbnailBuf != NULL);
sl@0
   186
	TPtr8 thumbnailData = thumbnailBuf->Des();
sl@0
   187
	thumbnailData.SetLength(KMaxThumbnailSize);
sl@0
   188
	thumbnailData.Fill(TChar('A'));
sl@0
   189
sl@0
   190
	TUint32 fc3 = User::FastCounter();
sl@0
   191
	
sl@0
   192
	for(TInt i=0;i<KThumbnailCount;++i)
sl@0
   193
		{
sl@0
   194
		TUint32 fc1 = User::FastCounter();
sl@0
   195
	
sl@0
   196
		TInt paramIndex = aStmt1.ParameterIndex(_L(":Path"));
sl@0
   197
		TEST(paramIndex >= 0);
sl@0
   198
		TInt err = aStmt1.BindText(paramIndex, _L("c:\\test\\abcdefgh123456789.jpg"));
sl@0
   199
		TEST2(err, KErrNone);
sl@0
   200
sl@0
   201
		paramIndex = aStmt1.ParameterIndex(_L(":Width"));
sl@0
   202
		TEST(paramIndex >= 0);
sl@0
   203
		err = aStmt1.BindInt(paramIndex, 50);
sl@0
   204
		TEST2(err, KErrNone);
sl@0
   205
sl@0
   206
		paramIndex = aStmt1.ParameterIndex(_L(":Height"));
sl@0
   207
		TEST(paramIndex >= 0);
sl@0
   208
		err = aStmt1.BindInt(paramIndex, 40);
sl@0
   209
		TEST2(err, KErrNone);
sl@0
   210
sl@0
   211
		paramIndex = aStmt1.ParameterIndex(_L(":OrigWidth"));
sl@0
   212
		TEST(paramIndex >= 0);
sl@0
   213
		err = aStmt1.BindInt(paramIndex, 1000);
sl@0
   214
		TEST2(err, KErrNone);
sl@0
   215
sl@0
   216
		paramIndex = aStmt1.ParameterIndex(_L(":OrigHeight"));
sl@0
   217
		TEST(paramIndex >= 0);
sl@0
   218
		err = aStmt1.BindInt(paramIndex, 2000);
sl@0
   219
		TEST2(err, KErrNone);
sl@0
   220
sl@0
   221
		paramIndex = aStmt1.ParameterIndex(_L(":Format"));
sl@0
   222
		TEST(paramIndex >= 0);
sl@0
   223
		err = aStmt1.BindInt(paramIndex, 10);
sl@0
   224
		TEST2(err, KErrNone);
sl@0
   225
sl@0
   226
		paramIndex = aStmt1.ParameterIndex(_L(":Flags"));
sl@0
   227
		TEST(paramIndex >= 0);
sl@0
   228
		err = aStmt1.BindInt(paramIndex, 0x1E);
sl@0
   229
		TEST2(err, KErrNone);
sl@0
   230
sl@0
   231
		paramIndex = aStmt1.ParameterIndex(_L(":Size"));
sl@0
   232
		TEST(paramIndex >= 0);
sl@0
   233
		err = aStmt1.BindInt(paramIndex, 1200);
sl@0
   234
		TEST2(err, KErrNone);
sl@0
   235
sl@0
   236
		paramIndex = aStmt1.ParameterIndex(_L(":Orient"));
sl@0
   237
		TEST(paramIndex >= 0);
sl@0
   238
		err = aStmt1.BindInt(paramIndex, 2);
sl@0
   239
		TEST2(err, KErrNone);
sl@0
   240
sl@0
   241
		paramIndex = aStmt1.ParameterIndex(_L(":ThumbFromPath"));
sl@0
   242
		TEST(paramIndex >= 0);
sl@0
   243
		err = aStmt1.BindInt(paramIndex, 1);
sl@0
   244
		TEST2(err, KErrNone);
sl@0
   245
sl@0
   246
		paramIndex = aStmt1.ParameterIndex(_L(":Modified"));
sl@0
   247
		TEST(paramIndex >= 0);
sl@0
   248
		err = aStmt1.BindInt64(paramIndex, 3212398543392LL);
sl@0
   249
		TEST2(err, KErrNone);
sl@0
   250
		
sl@0
   251
		TUint32 fc2 = User::FastCounter();
sl@0
   252
		TheBindParamsTime += TimeDiffUs(fc1, fc2);
sl@0
   253
sl@0
   254
		fc1 = User::FastCounter();
sl@0
   255
		err = aStmt1.Exec();
sl@0
   256
		fc2 = User::FastCounter();
sl@0
   257
		TheStmtExecTime += TimeDiffUs(fc1, fc2);
sl@0
   258
sl@0
   259
		TEST2(err, 1);
sl@0
   260
		
sl@0
   261
		fc1 = User::FastCounter();
sl@0
   262
		err = aStmt1.Reset();
sl@0
   263
		fc2 = User::FastCounter();
sl@0
   264
		TheStmtResetTime += TimeDiffUs(fc1, fc2);
sl@0
   265
		
sl@0
   266
		TEST2(err, KErrNone);
sl@0
   267
		
sl@0
   268
		thumbnailData.SetLength(KThumbnailSizes[i]);
sl@0
   269
sl@0
   270
		fc1 = User::FastCounter();
sl@0
   271
		paramIndex = aStmt2.ParameterIndex(_L(":Data"));
sl@0
   272
		TEST(paramIndex >= 0);
sl@0
   273
		err = aStmt2.BindBinary(paramIndex, thumbnailData);
sl@0
   274
		TEST2(err, KErrNone);
sl@0
   275
		fc2 = User::FastCounter();
sl@0
   276
		TheBindParamsTime += TimeDiffUs(fc1, fc2);
sl@0
   277
sl@0
   278
		fc1 = User::FastCounter();
sl@0
   279
		err = aStmt2.Exec();
sl@0
   280
		fc2 = User::FastCounter();
sl@0
   281
		TheStmtExecTime += TimeDiffUs(fc1, fc2);
sl@0
   282
		
sl@0
   283
		TEST2(err, 1);
sl@0
   284
		
sl@0
   285
		fc1 = User::FastCounter();
sl@0
   286
		err = aStmt2.Reset();
sl@0
   287
		fc2 = User::FastCounter();
sl@0
   288
		TheStmtResetTime += TimeDiffUs(fc1, fc2);
sl@0
   289
		
sl@0
   290
		TEST2(err, KErrNone);
sl@0
   291
		}
sl@0
   292
sl@0
   293
	TUint32 fc4 = User::FastCounter();
sl@0
   294
	ThePopulateTempTableTime += TimeDiffUs(fc3, fc4);
sl@0
   295
	
sl@0
   296
	delete thumbnailBuf;
sl@0
   297
	}
sl@0
   298
sl@0
   299
void FlushTempTables()
sl@0
   300
	{
sl@0
   301
	TUint32 fc1 = User::FastCounter();
sl@0
   302
	
sl@0
   303
	TInt err = TheDb.Exec(_L("BEGIN TRANSACTION"));
sl@0
   304
	TEST(err >= 0);
sl@0
   305
sl@0
   306
	err = TheDb.Exec(_L("INSERT INTO ThumbnailInfo SELECT * FROM TempThumbnailInfo;"));
sl@0
   307
	TEST2(err, KThumbnailCount);
sl@0
   308
sl@0
   309
	err = TheDb.Exec(_L("INSERT INTO ThumbnailInfoData SELECT * FROM TempThumbnailInfoData;"));
sl@0
   310
	TEST2(err, KThumbnailCount);
sl@0
   311
sl@0
   312
	err = TheDb.Exec(_L("DELETE FROM TempThumbnailInfo;"));
sl@0
   313
	TEST(err >= 0);
sl@0
   314
sl@0
   315
	err = TheDb.Exec(_L("DELETE FROM TempThumbnailInfoData;"));
sl@0
   316
	TEST(err >= 0);
sl@0
   317
sl@0
   318
	err = TheDb.Exec(_L("COMMIT;"));
sl@0
   319
	TEST(err >= 0);
sl@0
   320
sl@0
   321
	TUint32 fc2 = User::FastCounter();
sl@0
   322
	TheFlushTime += TimeDiffUs(fc1, fc2);
sl@0
   323
	}
sl@0
   324
sl@0
   325
/**
sl@0
   326
@SYMTestCaseID			PDS-SQL-CT-4206
sl@0
   327
@SYMTestCaseDesc		Thumbnail database performance test.
sl@0
   328
@SYMTestPriority		Medium
sl@0
   329
@SYMTestActions			The test inserts 60 thumbnails with summary size of 1.7Mb into the thumbnail database.  
sl@0
   330
@SYMTestExpectedResults The test must not fail
sl@0
   331
@SYMDEF					ou1cimx1#362240
sl@0
   332
*/
sl@0
   333
void PopulateDb()
sl@0
   334
	{
sl@0
   335
	TInt dataToCommit = 0;
sl@0
   336
	for(TInt i=0;i<KThumbnailCount;++i)
sl@0
   337
		{
sl@0
   338
		dataToCommit += KThumbnailSizes[i]; 
sl@0
   339
		}
sl@0
   340
	TReal d = dataToCommit / 1024.0;
sl@0
   341
	TheTest.Printf(_L("==dataToCommit=%d bytes (%8.2lf Mb)\r\n"), dataToCommit, d);
sl@0
   342
	
sl@0
   343
	TInt err = TheDb.Open(TheDbFileName, &TheSqlConfigString);
sl@0
   344
	TEST2(err, KErrNone);
sl@0
   345
sl@0
   346
	err = TheDb.Exec(_L("CREATE TEMP TABLE TempThumbnailInfo (Path TEXT COLLATE NOCASE,TNId INTEGER,Size INTEGER,Format INTEGER,TNPath TEXT COLLATE NOCASE,Width INTEGER,Height INTEGER,OrigWidth INTEGER,OrigHeight INTEGER,Flags INTEGER,VideoPosition INTEGER,Orientation INTEGER,ThumbFromPath INTEGER,Modified LARGEINT);"));
sl@0
   347
	TEST(err >= 0);
sl@0
   348
	
sl@0
   349
	err = TheDb.Exec(_L("CREATE TEMP TABLE TempThumbnailInfoData (Data BLOB);"));
sl@0
   350
	TEST(err >= 0);
sl@0
   351
		
sl@0
   352
	RSqlStatement stmt1;
sl@0
   353
	err = stmt1.Prepare(TheDb, _L("INSERT INTO TempThumbnailInfo(Path,Size,Format,Width,Height,OrigWidth,OrigHeight,Flags,Orientation,ThumbFromPath,Modified) VALUES (:Path,:Size,:Format,:Width,:Height,:OrigWidth,:OrigHeight,:Flags,:Orient,:ThumbFromPath,:Modified);"));
sl@0
   354
	TEST2(err, KErrNone);
sl@0
   355
sl@0
   356
	RSqlStatement stmt2;
sl@0
   357
	err = stmt2.Prepare(TheDb, _L("INSERT INTO TempThumbnailInfoData (Data) VALUES (:Data);"));
sl@0
   358
	TEST2(err, KErrNone);
sl@0
   359
	
sl@0
   360
	PoulateTempTables(stmt1, stmt2);
sl@0
   361
	FlushTempTables();
sl@0
   362
	
sl@0
   363
	stmt2.Close();
sl@0
   364
	stmt1.Close();
sl@0
   365
	TheDb.Close();
sl@0
   366
sl@0
   367
	TheTest.Printf(_L("==Create database, time=%d microseconds\r\n"), TheCreateDbTime);
sl@0
   368
	TheTest.Printf(_L("==Create tables, time=%d microseconds\r\n"), TheCreateTablesTime);
sl@0
   369
	TheTest.Printf(_L("==Bind parameters time, time=%d microseconds\r\n"), TheBindParamsTime);
sl@0
   370
	TheTest.Printf(_L("==Temp tables, statement exec, time=%d microseconds\r\n"), TheStmtExecTime);
sl@0
   371
	TheTest.Printf(_L("==Temp tables, statement reset, time=%d microseconds\r\n"), TheStmtResetTime);
sl@0
   372
	TheTest.Printf(_L("==Populate temp tables, time=%d microseconds\r\n"), ThePopulateTempTableTime);
sl@0
   373
	TheTest.Printf(_L("==Copy temp tables to main tables, time=%d microseconds\r\n"), TheFlushTime);
sl@0
   374
	}
sl@0
   375
sl@0
   376
void DoTestsL()
sl@0
   377
	{
sl@0
   378
	TheTestTitle.Format(_L("@SYMTestCaseID:PDS-SQL-CT-4205 Create database, encoding: \"%S\", page size: %d\r\n"), 
sl@0
   379
			TheCmdLineParams.iDbEncoding == TCmdLineParams::EDbUtf16 ? &KUtf16 : &KUtf8, TheCmdLineParams.iPageSize);
sl@0
   380
	TheTest.Start(TheTestTitle);
sl@0
   381
	CreateDb();
sl@0
   382
sl@0
   383
	TheTestTitle.Format(_L("@SYMTestCaseID:PDS-SQL-CT-4206 Populate database, encoding: \"%S\", page size: %d\r\n"), 
sl@0
   384
			TheCmdLineParams.iDbEncoding == TCmdLineParams::EDbUtf16 ? &KUtf16 : &KUtf8, TheCmdLineParams.iPageSize);
sl@0
   385
	TheTest.Next(TheTestTitle);
sl@0
   386
	PopulateDb();
sl@0
   387
	
sl@0
   388
	(void)RSqlDatabase::Delete(TheDbFileName);
sl@0
   389
	}
sl@0
   390
sl@0
   391
TInt E32Main()
sl@0
   392
	{
sl@0
   393
	TheTest.Title();
sl@0
   394
sl@0
   395
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   396
	TheTest(tc != NULL);
sl@0
   397
	
sl@0
   398
	__UHEAP_MARK;
sl@0
   399
sl@0
   400
	GetCmdLineParamsAndSqlConfigString(TheTest, _L("t_sqlperformance5"), TheCmdLineParams, TheSqlConfigString);
sl@0
   401
	PrepareDbName(KDbName, TheCmdLineParams.iDriveName, TheDbFileName);
sl@0
   402
	SetSoftHeapLimit(TheCmdLineParams.iSoftHeapLimitKb);
sl@0
   403
	
sl@0
   404
	TheTest.Printf(_L("==Databases: %S\r\n"), &TheDbFileName); 
sl@0
   405
	
sl@0
   406
	TestEnvDestroy();
sl@0
   407
	TestEnvInit();
sl@0
   408
	TRAPD(err, DoTestsL());
sl@0
   409
	TestEnvDestroy();
sl@0
   410
	TEST2(err, KErrNone);
sl@0
   411
sl@0
   412
	__UHEAP_MARKEND;
sl@0
   413
	
sl@0
   414
	TheTest.End();
sl@0
   415
	TheTest.Close();
sl@0
   416
	
sl@0
   417
	delete tc;
sl@0
   418
sl@0
   419
	User::Heap().Check();
sl@0
   420
	return KErrNone;
sl@0
   421
	}