sl@0
|
1 |
// Copyright (c) 2008-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 |
// Name : tsharedmemory.cpp
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "tsharedmemory.h"
|
sl@0
|
19 |
#include <unistd.h>
|
sl@0
|
20 |
#include <errno.h>
|
sl@0
|
21 |
#include <stdio.h>
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <stdlib.h>
|
sl@0
|
24 |
#include <string.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
CTestsharedmemory::~CTestsharedmemory()
|
sl@0
|
28 |
{
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
CTestsharedmemory::CTestsharedmemory(const TDesC& aStepName)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
// MANDATORY Call to base class method to set up the human readable name for logging.
|
sl@0
|
34 |
SetTestStepName(aStepName);
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
TVerdict CTestsharedmemory::doTestStepPreambleL()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
__UHEAP_MARK;
|
sl@0
|
40 |
SetTestStepResult(EPass);
|
sl@0
|
41 |
return TestStepResult();
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
TVerdict CTestsharedmemory::doTestStepPostambleL()
|
sl@0
|
47 |
{
|
sl@0
|
48 |
__UHEAP_MARKEND;
|
sl@0
|
49 |
iParamCnt=0;
|
sl@0
|
50 |
return TestStepResult();
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
|
sl@0
|
54 |
TVerdict CTestsharedmemory::doTestStepL()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
int err;
|
sl@0
|
57 |
if(TestStepName() == KTestsharedmemory1)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
INFO_PRINTF1(_L("Testsharedmemory1():"));
|
sl@0
|
60 |
err = Testsharedmemory1();
|
sl@0
|
61 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
if(TestStepName() == KTestsharedmemory2)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
INFO_PRINTF1(_L("Testsharedmemory2():"));
|
sl@0
|
66 |
err = Testsharedmemory2();
|
sl@0
|
67 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
if(TestStepName() == KTestsharedmemory3)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
INFO_PRINTF1(_L("Testsharedmemory3():"));
|
sl@0
|
72 |
err = Testsharedmemory3();
|
sl@0
|
73 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
if(TestStepName() == KTestsharedmemory4)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
INFO_PRINTF1(_L("Testsharedmemory4():"));
|
sl@0
|
78 |
err = Testsharedmemory4();
|
sl@0
|
79 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
if(TestStepName() == KTestsharedmemory5)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
INFO_PRINTF1(_L("Testsharedmemory5():"));
|
sl@0
|
84 |
err = Testsharedmemory5();
|
sl@0
|
85 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
if(TestStepName() == KTestsharedmemory6)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
INFO_PRINTF1(_L("Testsharedmemory6():"));
|
sl@0
|
90 |
err = Testsharedmemory6();
|
sl@0
|
91 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
if(TestStepName() == KTestsharedmemory7)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
INFO_PRINTF1(_L("Testsharedmemory7():"));
|
sl@0
|
96 |
err = Testsharedmemory7();
|
sl@0
|
97 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
if(TestStepName() == KTestsharedmemory8)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
INFO_PRINTF1(_L("Testsharedmemory8():"));
|
sl@0
|
102 |
err = Testsharedmemory8();
|
sl@0
|
103 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
104 |
}
|
sl@0
|
105 |
if(TestStepName() == KTestsharedmemory9)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
INFO_PRINTF1(_L("Testsharedmemory9():"));
|
sl@0
|
108 |
err = Testsharedmemory9();
|
sl@0
|
109 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
110 |
}
|
sl@0
|
111 |
if(TestStepName() == KTestsharedmemory10)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
INFO_PRINTF1(_L("Testsharedmemory10():"));
|
sl@0
|
114 |
err = Testsharedmemory10();
|
sl@0
|
115 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
if(TestStepName() == KTestsharedmemory11)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
INFO_PRINTF1(_L("Testsharedmemory11():"));
|
sl@0
|
120 |
err = Testsharedmemory11();
|
sl@0
|
121 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
if(TestStepName() == KTestsharedmemory12)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
INFO_PRINTF1(_L("Testsharedmemory12():"));
|
sl@0
|
126 |
err = Testsharedmemory12();
|
sl@0
|
127 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
128 |
}
|
sl@0
|
129 |
if(TestStepName() == KTestsharedmemory13)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
INFO_PRINTF1(_L("Testsharedmemory13():"));
|
sl@0
|
132 |
err = Testsharedmemory13();
|
sl@0
|
133 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
134 |
}
|
sl@0
|
135 |
if(TestStepName() == KTestsharedmemory14)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
INFO_PRINTF1(_L("Testsharedmemory14():"));
|
sl@0
|
138 |
err = Testsharedmemory14();
|
sl@0
|
139 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
140 |
}
|
sl@0
|
141 |
if(TestStepName() == KTestsharedmemory15)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
INFO_PRINTF1(_L("Testsharedmemory15():"));
|
sl@0
|
144 |
err = Testsharedmemory15();
|
sl@0
|
145 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
146 |
}
|
sl@0
|
147 |
if(TestStepName() == KTestsharedmemory16)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
INFO_PRINTF1(_L("Testsharedmemory16():"));
|
sl@0
|
150 |
err = Testsharedmemory16();
|
sl@0
|
151 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
152 |
}
|
sl@0
|
153 |
if(TestStepName() == KTestsharedmemory17)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
INFO_PRINTF1(_L("Testsharedmemory17():"));
|
sl@0
|
156 |
err = Testsharedmemory17();
|
sl@0
|
157 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
if(TestStepName() == KTestsharedmemory18)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
INFO_PRINTF1(_L("Testsharedmemory18():"));
|
sl@0
|
162 |
err = Testsharedmemory18();
|
sl@0
|
163 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
164 |
}
|
sl@0
|
165 |
if(TestStepName() == KTestsharedmemory19)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
INFO_PRINTF1(_L("Testsharedmemory19():"));
|
sl@0
|
168 |
err = Testsharedmemory19();
|
sl@0
|
169 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
if(TestStepName() == KTestsharedmemory20)
|
sl@0
|
172 |
{
|
sl@0
|
173 |
INFO_PRINTF1(_L("Testsharedmemory20():"));
|
sl@0
|
174 |
err = Testsharedmemory20();
|
sl@0
|
175 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
176 |
}
|
sl@0
|
177 |
if(TestStepName() == KTestsharedmemory21)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
INFO_PRINTF1(_L("Testsharedmemory21():"));
|
sl@0
|
180 |
err = Testsharedmemory21();
|
sl@0
|
181 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
182 |
}
|
sl@0
|
183 |
if(TestStepName() == KTestsharedmemory22)
|
sl@0
|
184 |
{
|
sl@0
|
185 |
INFO_PRINTF1(_L("Testsharedmemory22():"));
|
sl@0
|
186 |
err = Testsharedmemory22();
|
sl@0
|
187 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
188 |
}
|
sl@0
|
189 |
if(TestStepName() == KTestsharedmemory23)
|
sl@0
|
190 |
{
|
sl@0
|
191 |
INFO_PRINTF1(_L("Testsharedmemory23():"));
|
sl@0
|
192 |
err = Testsharedmemory23();
|
sl@0
|
193 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
194 |
}
|
sl@0
|
195 |
if(TestStepName() == KTestsharedmemory24)
|
sl@0
|
196 |
{
|
sl@0
|
197 |
INFO_PRINTF1(_L("Testsharedmemory24():"));
|
sl@0
|
198 |
err = Testsharedmemory24();
|
sl@0
|
199 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
if(TestStepName() == KTestsharedmemory25)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
INFO_PRINTF1(_L("Testsharedmemory25():"));
|
sl@0
|
204 |
err = Testsharedmemory25();
|
sl@0
|
205 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
if(TestStepName() == KTestsharedmemory26)
|
sl@0
|
208 |
{
|
sl@0
|
209 |
INFO_PRINTF1(_L("Testsharedmemory26():"));
|
sl@0
|
210 |
err = Testsharedmemory26();
|
sl@0
|
211 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
if(TestStepName() == KTestsharedmemory27)
|
sl@0
|
214 |
{
|
sl@0
|
215 |
INFO_PRINTF1(_L("Testsharedmemory27():"));
|
sl@0
|
216 |
err = Testsharedmemory27();
|
sl@0
|
217 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
218 |
}
|
sl@0
|
219 |
if(TestStepName() == KTestsharedmemory28)
|
sl@0
|
220 |
{
|
sl@0
|
221 |
INFO_PRINTF1(_L("Testsharedmemory28():"));
|
sl@0
|
222 |
err = Testsharedmemory28();
|
sl@0
|
223 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
if(TestStepName() == KTestsharedmemory29)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
INFO_PRINTF1(_L("Testsharedmemory29():"));
|
sl@0
|
228 |
err = Testsharedmemory29();
|
sl@0
|
229 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
230 |
}
|
sl@0
|
231 |
if(TestStepName() == KTestsharedmemory30)
|
sl@0
|
232 |
{
|
sl@0
|
233 |
INFO_PRINTF1(_L("Testsharedmemory30():"));
|
sl@0
|
234 |
err = Testsharedmemory30();
|
sl@0
|
235 |
SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
|
sl@0
|
236 |
}
|
sl@0
|
237 |
return TestStepResult();
|
sl@0
|
238 |
|
sl@0
|
239 |
}
|
sl@0
|
240 |
|
sl@0
|
241 |
|