Update contrib.
1 // Copyright (c) 2006-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 // For the out of memory test of HAL initialise/ Persist functions :
28 LOCAL_D RTest TheTest (_L ("OOM Tests"));
31 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1711
32 @SYMTestCaseDesc OOM Test Initialise HAL attributes
33 @SYMTestPriority Medium
34 @SYMTestActions Tests for the out of memory conditions
35 @SYMTestExpectedResults Tests must not fail
36 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
39 LOCAL_C void OOMTestInitialiseHAL()
41 TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1711 OOM test for InitialiseHAL() "));
42 PersistHAL(); // to make sure HAL.DAT is on the system drive
49 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
50 err = InitialiseHAL();
51 __UHEAP_SETFAIL(RHeap::ENone, 0);
54 } while(err == KErrNoMemory);
56 TheTest(err==KErrNone);
57 TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
60 @SYMTestCaseID SYSLIB-HALSETTINGS-CT-1710
61 @SYMTestCaseDesc OOM Test for Persist HAL attributes
62 @SYMTestPriority Medium
63 @SYMTestActions Tests for the out of memory conditions
64 @SYMTestExpectedResults Tests must not fail
65 @SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
67 LOCAL_C void OOMTestPersistHAL()
69 TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1710 OOM test for PersistHAL() "));
77 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
79 __UHEAP_SETFAIL(RHeap::ENone, 0);
82 } while(err == KErrNoMemory);
84 TheTest(err==KErrNone);
85 TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
89 LOCAL_C void RunTestsL()
91 OOMTestInitialiseHAL();
95 GLDEF_C TInt E32Main()
100 TheTest.Start (_L ("OOM Tests"));
101 CTrapCleanup* cleanup=CTrapCleanup::New();
104 TRAPD(err, ::RunTestsL());