diff -r e80a5e3e883f -r 605672cc2a86 camcordermmfplugin/tsrc/public/basic/src/camcTest_1.cpp --- a/camcordermmfplugin/tsrc/public/basic/src/camcTest_1.cpp Fri Sep 24 10:34:11 2010 +0300 +++ b/camcordermmfplugin/tsrc/public/basic/src/camcTest_1.cpp Wed Oct 06 14:52:34 2010 +0300 @@ -18,7 +18,7 @@ // INCLUDE FILES -#include "CamcTest_1.h" +#include "camcTest_1.h" #include @@ -845,6 +845,7 @@ { // Always use NewL (Do not use NewLC) !!! CTestSuite *suite = CTestSuite::NewL(_L8("CCamcTest_1")); + CleanupStack::PushL( suite ); suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.OPENFILEL_001"), &OpenFileL_001_L)); suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.OPENFILEL_002"), &OpenFileL_002_L)); @@ -875,7 +876,7 @@ suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.OPENDESCL_001"), &OpenDesL_001_L)); suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.OPENURLL_001"), &OpenUrlL_001_L)); - + CleanupStack::Pop( suite ); return suite; }