sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Enable Wserv memory leak checks sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "TMemLeakMode.h" sl@0: #include sl@0: sl@0: // sl@0: // sl@0: CTMemLeakCheckEnable::CTMemLeakCheckEnable(CTestStep* aStep) : CTWsGraphicsBase(aStep) sl@0: { sl@0: INFO_PRINTF1(_L("Enabling memory leak checks")); sl@0: } sl@0: sl@0: void CTMemLeakCheckEnable::ConstructL() sl@0: { sl@0: iIsWsTestMode = !iTest->IsFullRomL(); sl@0: if (iIsWsTestMode) sl@0: { sl@0: TheClient->iWs.DebugInfo(EWsDebugSetCheckHeapOnDisconnectMode,EWsCheckHeapOnDisconnectModeAlways); sl@0: } sl@0: } sl@0: sl@0: void CTMemLeakCheckEnable::RunTestCaseL(TInt ) sl@0: { sl@0: if (!iIsWsTestMode) sl@0: { sl@0: #if defined(__WINS__) sl@0: WARN_PRINTF1(_L("Test skipped as TechView appears to be running\n")); sl@0: #else sl@0: INFO_PRINTF1(_L("Test skipped as TechView appears to be running\n")); sl@0: #endif sl@0: } sl@0: TestComplete(); sl@0: } sl@0: sl@0: __WS_CONSTRUCT_STEP__(MemLeakCheckEnable) sl@0: sl@0: // sl@0: // sl@0: sl@0: CTMemLeakCheckOneShot::CTMemLeakCheckOneShot(CTestStep* aStep) : CTWsGraphicsBase(aStep) sl@0: { sl@0: INFO_PRINTF1(_L("Triggering one shot memory leak check")); sl@0: } sl@0: sl@0: void CTMemLeakCheckOneShot::ConstructL() sl@0: { sl@0: iIsWsTestMode = !iTest->IsFullRomL(); sl@0: if (iIsWsTestMode) sl@0: { sl@0: TheClient->iWs.DebugInfo(EWsDebugSetCheckHeapOnDisconnectMode,EWsCheckHeapOnDisconnectModeOnce); sl@0: } sl@0: } sl@0: sl@0: void CTMemLeakCheckOneShot::RunTestCaseL(TInt ) sl@0: { sl@0: if (!iIsWsTestMode) sl@0: { sl@0: #if defined(__WINS__) sl@0: WARN_PRINTF1(_L("Test skipped as TechView appears to be running\n")); sl@0: #else sl@0: INFO_PRINTF1(_L("Test skipped as TechView appears to be running\n")); sl@0: #endif sl@0: } sl@0: TestComplete(); sl@0: } sl@0: sl@0: __WS_CONSTRUCT_STEP__(MemLeakCheckOneShot)