diff -r e80a5e3e883f -r 605672cc2a86 camerasrv_plat/media_recorder_api/tsrc/src/camcTest_8.cpp --- a/camerasrv_plat/media_recorder_api/tsrc/src/camcTest_8.cpp Fri Sep 24 10:34:11 2010 +0300 +++ b/camerasrv_plat/media_recorder_api/tsrc/src/camcTest_8.cpp Wed Oct 06 14:52:34 2010 +0300 @@ -457,15 +457,17 @@ { // Always use NewL (Do not use NewLC) !!! CTestSuite *suite = CTestSuite::NewL(_L8("CCamcTest_8")); + CleanupStack::PushL( suite ); - suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_001"), &MultipleInstance_001_L)); + suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_001"), &CCamcTest_8::MultipleInstance_001_L)); - suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_002"), &MultipleInstance_002_L)); - suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_003"), &MultipleInstance_003_L)); - suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_004"), &MultipleInstance_004_L)); - suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_005"), &MultipleInstance_005_L)); - suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_006"), &MultipleInstance_006_L)); + suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_002"), &CCamcTest_8::MultipleInstance_002_L)); + suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_003"), &CCamcTest_8::MultipleInstance_003_L)); + suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_004"), &CCamcTest_8::MultipleInstance_004_L)); + suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_005"), &CCamcTest_8::MultipleInstance_005_L)); + suite->addTestL(CTestCaller::NewL(_L8("CAMC_API.MULTIPLEINSTANCE_006"), &CCamcTest_8::MultipleInstance_006_L)); + CleanupStack::Pop( suite ); return suite; }