landmarks/locationlandmarks/tsrc/LandmarkTestModule/src/FT_CPosTp153.cpp
changeset 39 3efc7a0e8755
parent 35 1a92308afc46
--- a/landmarks/locationlandmarks/tsrc/LandmarkTestModule/src/FT_CPosTp153.cpp	Fri Jul 23 19:40:48 2010 +0530
+++ b/landmarks/locationlandmarks/tsrc/LandmarkTestModule/src/FT_CPosTp153.cpp	Fri Aug 06 19:34:22 2010 +0530
@@ -64,8 +64,6 @@
     iLandmarks.ResetAndDestroy();
     iLandmarks.Close();
 
-    delete iDatabase;
-    iDatabase=NULL;
 
     delete iLandmarkEncoder;
     iLandmarkEncoder = NULL;
@@ -76,17 +74,6 @@
     delete iOperation;
     iOperation = NULL;
 
-    TRAPD(err, RemoveGlobalCategoriesL());
-    if (err != KErrNone && err != KErrNotFound)
-        {
-        HBufC* buf = HBufC::NewLC( 128 );
-        TPtr buffer = buf->Des();
-            
-        buffer.Format(_L("RemoveGlobalCategoriesL leaved with %d"), err);
-        iLog->Log( buffer );
-        
-        CleanupStack::PopAndDestroy( buf );
-        }
 
     iLog->Log(_L("CloseTest Done"));
     }
@@ -101,32 +88,10 @@
     {
     BaflUtils::EnsurePathExistsL( iFileSession, KKMZFile );
 
-    // Use same lm db as in composite search test
-    iDatabase = UseCompositeLandmarksDbFileL();
-    if (iDatabase->IsInitializingNeeded())
-       {
-       ExecuteAndDeleteLD(iDatabase->InitializeL());
-       }
 
     // Delete the trace file
     DeleteFileL(KFileTrace);
 
-    delete iDatabase;
-    iDatabase = NULL;
-
-    iDatabase = CPosLandmarkDatabase::OpenL();
-    	
-    	if (iDatabase->IsInitializingNeeded())
-       {
-       ExecuteAndDeleteLD(iDatabase->InitializeL());
-       }
-
-    // Do reset so that global categories are included
-    CPosLmCategoryManager* categoryManager = CPosLmCategoryManager::NewL(*iDatabase);
-    CleanupStack::PushL(categoryManager);
-
-    ExecuteAndDeleteLD(categoryManager->ResetGlobalCategoriesL());
-    CleanupStack::PopAndDestroy(categoryManager);
 
     HBufC8* emptyBuffer=NULL;