Update contrib.
1 // Copyright (c) 2007-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.
14 // Enable Wserv memory leak checks
21 @internalComponent - Internal Symbian test code
24 #include "TMemLeakMode.h"
29 CTMemLeakCheckEnable::CTMemLeakCheckEnable(CTestStep* aStep) : CTWsGraphicsBase(aStep)
31 INFO_PRINTF1(_L("Enabling memory leak checks"));
34 void CTMemLeakCheckEnable::ConstructL()
36 iIsWsTestMode = !iTest->IsFullRomL();
39 TheClient->iWs.DebugInfo(EWsDebugSetCheckHeapOnDisconnectMode,EWsCheckHeapOnDisconnectModeAlways);
43 void CTMemLeakCheckEnable::RunTestCaseL(TInt )
48 WARN_PRINTF1(_L("Test skipped as TechView appears to be running\n"));
50 INFO_PRINTF1(_L("Test skipped as TechView appears to be running\n"));
56 __WS_CONSTRUCT_STEP__(MemLeakCheckEnable)
61 CTMemLeakCheckOneShot::CTMemLeakCheckOneShot(CTestStep* aStep) : CTWsGraphicsBase(aStep)
63 INFO_PRINTF1(_L("Triggering one shot memory leak check"));
66 void CTMemLeakCheckOneShot::ConstructL()
68 iIsWsTestMode = !iTest->IsFullRomL();
71 TheClient->iWs.DebugInfo(EWsDebugSetCheckHeapOnDisconnectMode,EWsCheckHeapOnDisconnectModeOnce);
75 void CTMemLeakCheckOneShot::RunTestCaseL(TInt )
80 WARN_PRINTF1(_L("Test skipped as TechView appears to be running\n"));
82 INFO_PRINTF1(_L("Test skipped as TechView appears to be running\n"));
88 __WS_CONSTRUCT_STEP__(MemLeakCheckOneShot)