sl@0
|
1 |
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// For the out of memory test of HAL initialise/ Persist functions :
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
@test
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <e32base.h>
|
sl@0
|
25 |
#include "halfiles.h"
|
sl@0
|
26 |
#include <e32test.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
LOCAL_D RTest TheTest (_L ("OOM Tests"));
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1711
|
sl@0
|
32 |
@SYMTestCaseDesc OOM Test Initialise HAL attributes
|
sl@0
|
33 |
@SYMTestPriority Medium
|
sl@0
|
34 |
@SYMTestActions Tests for the out of memory conditions
|
sl@0
|
35 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
36 |
@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
|
sl@0
|
39 |
LOCAL_C void OOMTestInitialiseHAL()
|
sl@0
|
40 |
{
|
sl@0
|
41 |
TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1711 OOM test for InitialiseHAL() "));
|
sl@0
|
42 |
PersistHAL(); // to make sure HAL.DAT is on the system drive
|
sl@0
|
43 |
TInt err;
|
sl@0
|
44 |
TInt tryCount = 0;
|
sl@0
|
45 |
do
|
sl@0
|
46 |
{
|
sl@0
|
47 |
__UHEAP_MARK;
|
sl@0
|
48 |
|
sl@0
|
49 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
50 |
err = InitialiseHAL();
|
sl@0
|
51 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
52 |
|
sl@0
|
53 |
__UHEAP_MARKEND;
|
sl@0
|
54 |
} while(err == KErrNoMemory);
|
sl@0
|
55 |
|
sl@0
|
56 |
TheTest(err==KErrNone);
|
sl@0
|
57 |
TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1710
|
sl@0
|
61 |
@SYMTestCaseDesc OOM Test for Persist HAL attributes
|
sl@0
|
62 |
@SYMTestPriority Medium
|
sl@0
|
63 |
@SYMTestActions Tests for the out of memory conditions
|
sl@0
|
64 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
65 |
@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
LOCAL_C void OOMTestPersistHAL()
|
sl@0
|
68 |
{
|
sl@0
|
69 |
TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1710 OOM test for PersistHAL() "));
|
sl@0
|
70 |
|
sl@0
|
71 |
TInt err;
|
sl@0
|
72 |
TInt tryCount = 0;
|
sl@0
|
73 |
do
|
sl@0
|
74 |
{
|
sl@0
|
75 |
__UHEAP_MARK;
|
sl@0
|
76 |
|
sl@0
|
77 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
78 |
err = PersistHAL();
|
sl@0
|
79 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
80 |
|
sl@0
|
81 |
__UHEAP_MARKEND;
|
sl@0
|
82 |
} while(err == KErrNoMemory);
|
sl@0
|
83 |
|
sl@0
|
84 |
TheTest(err==KErrNone);
|
sl@0
|
85 |
TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
|
sl@0
|
89 |
LOCAL_C void RunTestsL()
|
sl@0
|
90 |
{
|
sl@0
|
91 |
OOMTestInitialiseHAL();
|
sl@0
|
92 |
OOMTestPersistHAL();
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
GLDEF_C TInt E32Main()
|
sl@0
|
96 |
{
|
sl@0
|
97 |
|
sl@0
|
98 |
__UHEAP_MARK;
|
sl@0
|
99 |
TheTest.Title ();
|
sl@0
|
100 |
TheTest.Start (_L ("OOM Tests"));
|
sl@0
|
101 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
TRAPD(err, ::RunTestsL());
|
sl@0
|
105 |
|
sl@0
|
106 |
delete cleanup;
|
sl@0
|
107 |
|
sl@0
|
108 |
TheTest.End ();
|
sl@0
|
109 |
TheTest.Close ();
|
sl@0
|
110 |
__UHEAP_MARKEND;
|
sl@0
|
111 |
|
sl@0
|
112 |
return err;
|
sl@0
|
113 |
|
sl@0
|
114 |
}
|