First public contribution.
1 // Copyright (c) 2008-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #include "t_sqlitewsd.h"
23 void DoInserts(TInt aProcId, TInt aRecId1, TInt aRecId2)
29 TInt64 seed = now.Int64();
31 const TInt KMaxFailingAllocationNo = 20;
34 for(TInt recno=0;recno<KTestRecordCnt;)
36 //Insert record 1 under OOM simulation
37 TInt failingAllocationNo = Math::Rand(seed) % (KMaxFailingAllocationNo + 1);
38 __UHEAP_SETFAIL(RHeap::EDeterministic, failingAllocationNo );
40 sql.Format(_L8("INSERT INTO A VALUES(%d)"), aRecId1);
41 TInt err = sqlite3_exec(TheDb, (const char*)sql.PtrZ(), 0, 0, 0);
42 __UHEAP_SETFAIL(RHeap::ENone, 0);
43 TEST(err == SQLITE_NOMEM || err == SQLITE_BUSY || err == SQLITE_OK);
44 if(err == SQLITE_BUSY)
50 else if(err == SQLITE_OK)
53 if((recno % 100) == 0)
55 RDebug::Print(_L("Process %d: %d records inserted.\r\n"), aProcId, recno);
60 sql.Format(_L8("INSERT INTO A VALUES(%d)"), aRecId2);
61 err = sqlite3_exec(TheDb, (const char*)sql.PtrZ(), 0, 0, 0);
62 TEST(err == SQLITE_BUSY || err == SQLITE_OK);
63 if(err == SQLITE_BUSY)
71 if((recno % 100) == 0)
73 RDebug::Print(_L("Process %d: %d records inserted.\r\n"), aProcId, recno);
76 RDebug::Print(_L("Process %d inserted %d records. %d locks occured.\r\n"), aProcId, KTestRecordCnt, lockcnt);