sl@0
|
1 |
// Copyright (c) 2004-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 |
// This file contains code to test the plugin upgrade feature of ecom as required by CR 65BCA3.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <e32panic.h>
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
#include <bautils.h>
|
sl@0
|
22 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
23 |
#include "Discoverer.h"
|
sl@0
|
24 |
#include <ecom/ecom.h>
|
sl@0
|
25 |
#include "EComUidCodes.h"
|
sl@0
|
26 |
#include "Interface.h" // interface to Plugins
|
sl@0
|
27 |
|
sl@0
|
28 |
// RAM Only RSC and DLL
|
sl@0
|
29 |
_LIT(KEComPluginDLL, "Z:\\RAMOnly\\DefectPlugin.dll");
|
sl@0
|
30 |
_LIT(KEComPluginRSC, "Z:\\RAMOnly\\DefectPlugin.rsc");
|
sl@0
|
31 |
|
sl@0
|
32 |
_LIT(KEComPluginDLLOnC, "C:\\sys\\bin\\DefectPlugin.dll");
|
sl@0
|
33 |
_LIT(KEComPluginRSCOnC, "C:\\Resource\\Plugins\\DefectPlugin.rsc");
|
sl@0
|
34 |
_LIT(KClearEComResourceDir, "C:\\Resource\\");
|
sl@0
|
35 |
_LIT(KClearEComSysDir, "C:\\Sys\\");
|
sl@0
|
36 |
|
sl@0
|
37 |
LOCAL_D RTest test(_L("Drive Mount Test"));
|
sl@0
|
38 |
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
Copies the Plugins to specific folder for testing purpose
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
LOCAL_C void CopyPlugin()
|
sl@0
|
43 |
{
|
sl@0
|
44 |
test.Printf(_L("\nCopying plugins into C drive... \n"));
|
sl@0
|
45 |
TInt err=KErrNone;
|
sl@0
|
46 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginDLL, KEComPluginDLLOnC));
|
sl@0
|
47 |
test(err==KErrNone);
|
sl@0
|
48 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRSC, KEComPluginRSCOnC));
|
sl@0
|
49 |
test(err==KErrNone);
|
sl@0
|
50 |
// Give ECOM a chance to discover new plugins.
|
sl@0
|
51 |
// Otherwise ListImplementationsL could fail to find requested implementations.
|
sl@0
|
52 |
WAIT_FOR3s;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
Deletes Plugin from the RAM for cleanup purpose
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
LOCAL_C void DeletePlugin()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
test.Printf(_L("\nRemoving plugins to clean environment... \n"));
|
sl@0
|
61 |
TInt err=KErrNone;
|
sl@0
|
62 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginDLLOnC));
|
sl@0
|
63 |
test(err==KErrNone);
|
sl@0
|
64 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRSCOnC));
|
sl@0
|
65 |
test(err==KErrNone);
|
sl@0
|
66 |
// Give ECOM a chance to discover new plugins.
|
sl@0
|
67 |
// Otherwise ListImplementationsL could fail to find requested implementations.
|
sl@0
|
68 |
WAIT_FOR3s;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
Removes the Plugin folder together with its sub-folders
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
LOCAL_C void RemoveDir()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
//Remove plugins from the folders before deleting the directory or else
|
sl@0
|
77 |
//error -14 will be returned on the h2!
|
sl@0
|
78 |
DeletePlugin();
|
sl@0
|
79 |
TInt err=KErrNone;
|
sl@0
|
80 |
test.Printf(_L("Removing 'Resource' & 'Sys' folders... \n"));
|
sl@0
|
81 |
TRAP(err, EComTestUtils::FileManDeleteDirL(KClearEComResourceDir));
|
sl@0
|
82 |
test(err==KErrNone);
|
sl@0
|
83 |
TRAP(err, EComTestUtils::FileManDeleteDirL(KClearEComSysDir));
|
sl@0
|
84 |
test(err==KErrNone);
|
sl@0
|
85 |
|
sl@0
|
86 |
// Give ECOM a chance to discover new plugins.
|
sl@0
|
87 |
// Otherwise ListImplementationsL could fail to find requested implementations.
|
sl@0
|
88 |
WAIT_FOR3s;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
Prepares test environment, before the tests get started. This is to ensure that ecom.lang is created,
|
sl@0
|
94 |
which mustn't change during the test run. Otherwise, the test (although it will pass), won't test
|
sl@0
|
95 |
the mounting of a drive.
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
LOCAL_C void PrepareTestEnvironmentL()
|
sl@0
|
98 |
{
|
sl@0
|
99 |
test.Printf(_L("preparing test environment\n"));
|
sl@0
|
100 |
ECOMTU_KILL_SERVER_L(test);
|
sl@0
|
101 |
TUid interfaceUid={0x102797A1};
|
sl@0
|
102 |
RImplInfoPtrArray implArray;
|
sl@0
|
103 |
//start ecom session, which will create ecom.lang
|
sl@0
|
104 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
105 |
implArray.ResetAndDestroy();
|
sl@0
|
106 |
//kill server
|
sl@0
|
107 |
REComSession::FinalClose();
|
sl@0
|
108 |
ECOMTU_KILL_SERVER_L(test);
|
sl@0
|
109 |
|
sl@0
|
110 |
//
|
sl@0
|
111 |
//environment ready for the tests to start
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
Cleans up the test environment after the test...
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
LOCAL_C void FinalCleanup()
|
sl@0
|
119 |
{
|
sl@0
|
120 |
DeletePlugin(); //remove plugins from the folders
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
@SYMTestCaseID SYSLIB-ECOM-CT-1446
|
sl@0
|
126 |
@SYMTestCaseDesc Tests to ensure that the registry index gets updated when mounting
|
sl@0
|
127 |
a drive at boot time
|
sl@0
|
128 |
@SYMTestPriority High
|
sl@0
|
129 |
@SYMTestActions Copy plugin into c-drive.
|
sl@0
|
130 |
Call REComSession::ListImplementations() and check if implementation
|
sl@0
|
131 |
on C drive exists.
|
sl@0
|
132 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
LOCAL_C void MountFromBootL()
|
sl@0
|
135 |
{
|
sl@0
|
136 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1446 "));
|
sl@0
|
137 |
__UHEAP_MARK;
|
sl@0
|
138 |
|
sl@0
|
139 |
//Copy plugins into C drive
|
sl@0
|
140 |
CopyPlugin();
|
sl@0
|
141 |
|
sl@0
|
142 |
TUid interfaceUid={0x102797A1};
|
sl@0
|
143 |
RImplInfoPtrArray implArray;
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
The following plugin is now added to the C drive and will be discovered by ECOM during startup.
|
sl@0
|
147 |
|
sl@0
|
148 |
Interface UID DLL UID Imp. UID Version DllFile
|
sl@0
|
149 |
------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
150 |
0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
|
sl@0
|
151 |
|
sl@0
|
152 |
**/
|
sl@0
|
153 |
|
sl@0
|
154 |
// Now start ecom discovery and get implementations for IF UID 0x102797A1
|
sl@0
|
155 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
156 |
|
sl@0
|
157 |
//Expected number of implementations returned
|
sl@0
|
158 |
test(implArray.Count()==1);
|
sl@0
|
159 |
|
sl@0
|
160 |
//Check that the implementation uid returned matched the specs above
|
sl@0
|
161 |
TUid implUid = implArray[0]->ImplementationUid();
|
sl@0
|
162 |
TInt version = implArray[0]->Version();
|
sl@0
|
163 |
TInt drive = implArray[0]->Drive();
|
sl@0
|
164 |
|
sl@0
|
165 |
// imp. uid
|
sl@0
|
166 |
test(implUid.iUid == 0x102797A2);
|
sl@0
|
167 |
// version
|
sl@0
|
168 |
test(version == 1);
|
sl@0
|
169 |
// C drive
|
sl@0
|
170 |
test(drive == EDriveC);
|
sl@0
|
171 |
|
sl@0
|
172 |
//destroy array
|
sl@0
|
173 |
implArray.ResetAndDestroy();
|
sl@0
|
174 |
//kill server
|
sl@0
|
175 |
REComSession::FinalClose();
|
sl@0
|
176 |
ECOMTU_KILL_SERVER_L(test);
|
sl@0
|
177 |
__UHEAP_MARKEND;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
@SYMTestCaseID SYSLIB-ECOM-CT-1448
|
sl@0
|
182 |
@SYMTestCaseDesc Tests to ensure that the registry index gets updated when unmounting
|
sl@0
|
183 |
a drive at boot time
|
sl@0
|
184 |
@SYMTestPriority High
|
sl@0
|
185 |
@SYMTestActions Pluginfolder (resource) is removed (to simulate the removal of an mmc card)
|
sl@0
|
186 |
Call REComSession::ListImplementations() and check if implementation
|
sl@0
|
187 |
on C drive exists.
|
sl@0
|
188 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
LOCAL_C void UnmountFromBootL()
|
sl@0
|
191 |
{
|
sl@0
|
192 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1448 "));
|
sl@0
|
193 |
__UHEAP_MARK;
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
The following plugin is added to the C drive and discovered by ECOM. The Plugin will be dismounted
|
sl@0
|
196 |
and trigger a re-discovery.
|
sl@0
|
197 |
|
sl@0
|
198 |
Interface UID DLL UID Imp. UID Version DllFile
|
sl@0
|
199 |
------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
200 |
0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
|
sl@0
|
201 |
|
sl@0
|
202 |
**/
|
sl@0
|
203 |
RemoveDir();
|
sl@0
|
204 |
|
sl@0
|
205 |
TUid interfaceUid={0x102797A1};
|
sl@0
|
206 |
RImplInfoPtrArray implArray;
|
sl@0
|
207 |
|
sl@0
|
208 |
// Get implementations for IF UID 0x102797A1
|
sl@0
|
209 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
210 |
|
sl@0
|
211 |
//Expected number of implementations returned
|
sl@0
|
212 |
test(implArray.Count()==0);
|
sl@0
|
213 |
|
sl@0
|
214 |
//destroy array
|
sl@0
|
215 |
implArray.ResetAndDestroy();
|
sl@0
|
216 |
|
sl@0
|
217 |
//kill server
|
sl@0
|
218 |
REComSession::FinalClose();
|
sl@0
|
219 |
ECOMTU_KILL_SERVER_L(test);
|
sl@0
|
220 |
__UHEAP_MARKEND;
|
sl@0
|
221 |
}
|
sl@0
|
222 |
|
sl@0
|
223 |
|
sl@0
|
224 |
/**
|
sl@0
|
225 |
@SYMTestCaseID SYSLIB-ECOM-CT-1449
|
sl@0
|
226 |
@SYMTestCaseDesc Tests to ensure that the registry index gets updated when mounting
|
sl@0
|
227 |
a drive after boot time
|
sl@0
|
228 |
@SYMTestPriority High
|
sl@0
|
229 |
@SYMTestActions First clean the c-drive by removing the plugin folder
|
sl@0
|
230 |
Next call REComSession::ListImplementations() with any z-drive plugin,
|
sl@0
|
231 |
to start up ecom server and copy the plugins back into the c-drive, which
|
sl@0
|
232 |
triggers ecom discovery.
|
sl@0
|
233 |
Now call REComSession::ListImplementations() and check if implementation
|
sl@0
|
234 |
on C drive exists.
|
sl@0
|
235 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
236 |
*/
|
sl@0
|
237 |
LOCAL_C void MountAfterBootL()
|
sl@0
|
238 |
{
|
sl@0
|
239 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1449 "));
|
sl@0
|
240 |
__UHEAP_MARK;
|
sl@0
|
241 |
//start ecom server and prepare test environment...
|
sl@0
|
242 |
CopyPlugin();
|
sl@0
|
243 |
TUid interfaceUid={0x102797A1};
|
sl@0
|
244 |
RImplInfoPtrArray implArray;
|
sl@0
|
245 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
246 |
RemoveDir();
|
sl@0
|
247 |
|
sl@0
|
248 |
/**
|
sl@0
|
249 |
The following plugin will now be added to the C drive and ECOM will do a rediscovery and discover it.
|
sl@0
|
250 |
|
sl@0
|
251 |
Interface UID DLL UID Imp. UID Version DllFile
|
sl@0
|
252 |
------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
253 |
0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
|
sl@0
|
254 |
|
sl@0
|
255 |
**/
|
sl@0
|
256 |
//ECom server is running... Now test for mount after boot time.
|
sl@0
|
257 |
CopyPlugin();
|
sl@0
|
258 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
259 |
|
sl@0
|
260 |
test(implArray.Count()==1);
|
sl@0
|
261 |
|
sl@0
|
262 |
//Check that the implementation uid returned matched the specs above
|
sl@0
|
263 |
TUid implUid = implArray[0]->ImplementationUid();
|
sl@0
|
264 |
TInt version = implArray[0]->Version();
|
sl@0
|
265 |
TInt drive = implArray[0]->Drive();
|
sl@0
|
266 |
// imp. uid
|
sl@0
|
267 |
test(implUid.iUid == 0x102797A2);
|
sl@0
|
268 |
// version
|
sl@0
|
269 |
test(version == 1);
|
sl@0
|
270 |
// C drive
|
sl@0
|
271 |
test(drive == EDriveC);
|
sl@0
|
272 |
|
sl@0
|
273 |
//destroy array
|
sl@0
|
274 |
implArray.ResetAndDestroy();
|
sl@0
|
275 |
REComSession::FinalClose();
|
sl@0
|
276 |
ECOMTU_KILL_SERVER_L(test);
|
sl@0
|
277 |
__UHEAP_MARKEND;
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
/**
|
sl@0
|
281 |
@SYMTestCaseID SYSLIB-ECOM-CT-1450
|
sl@0
|
282 |
@SYMTestCaseDesc Tests to ensure that the registry index gets updated when unmounting
|
sl@0
|
283 |
a drive after boot time
|
sl@0
|
284 |
@SYMTestPriority High
|
sl@0
|
285 |
@SYMTestActions Remove plugin folders to unmount and call REComSession::ListImplementations()
|
sl@0
|
286 |
to check if implementation on C drive exists.
|
sl@0
|
287 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
288 |
*/
|
sl@0
|
289 |
LOCAL_C void UnmountAfterBootL()
|
sl@0
|
290 |
{
|
sl@0
|
291 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1450 "));
|
sl@0
|
292 |
__UHEAP_MARK;
|
sl@0
|
293 |
//start ecom server and prepare test environment...
|
sl@0
|
294 |
CopyPlugin();
|
sl@0
|
295 |
TUid interfaceUid={0x102797A1};
|
sl@0
|
296 |
RImplInfoPtrArray implArray;
|
sl@0
|
297 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
298 |
|
sl@0
|
299 |
/**
|
sl@0
|
300 |
The following plugin is added to the C drive and discovered by ECOM. The Plugin will be dismounted
|
sl@0
|
301 |
and trigger a re-discovery.
|
sl@0
|
302 |
|
sl@0
|
303 |
Interface UID DLL UID Imp. UID Version DllFile
|
sl@0
|
304 |
------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
305 |
0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
|
sl@0
|
306 |
|
sl@0
|
307 |
**/
|
sl@0
|
308 |
//Ecom server still running...
|
sl@0
|
309 |
RemoveDir();
|
sl@0
|
310 |
|
sl@0
|
311 |
// Get implementations for IF UID 0x102797A1
|
sl@0
|
312 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
313 |
|
sl@0
|
314 |
//Expected number of implementations returned
|
sl@0
|
315 |
test(implArray.Count()==0);
|
sl@0
|
316 |
|
sl@0
|
317 |
//destroy array
|
sl@0
|
318 |
implArray.ResetAndDestroy();
|
sl@0
|
319 |
|
sl@0
|
320 |
REComSession::FinalClose();
|
sl@0
|
321 |
ECOMTU_KILL_SERVER_L(test);
|
sl@0
|
322 |
__UHEAP_MARKEND;
|
sl@0
|
323 |
}
|
sl@0
|
324 |
|
sl@0
|
325 |
typedef void (*ClassFuncPtrL) (void);
|
sl@0
|
326 |
|
sl@0
|
327 |
/**
|
sl@0
|
328 |
Wrapper function to call all test functions
|
sl@0
|
329 |
|
sl@0
|
330 |
@param testFuncL pointer to test function
|
sl@0
|
331 |
@param aTestDesc test function name
|
sl@0
|
332 |
*/
|
sl@0
|
333 |
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
334 |
{
|
sl@0
|
335 |
test.Next(aTestDesc);
|
sl@0
|
336 |
|
sl@0
|
337 |
__UHEAP_MARK;
|
sl@0
|
338 |
// find out the number of open handles
|
sl@0
|
339 |
TInt startProcessHandleCount;
|
sl@0
|
340 |
TInt startThreadHandleCount;
|
sl@0
|
341 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
342 |
|
sl@0
|
343 |
//Call the test function
|
sl@0
|
344 |
(*testFuncL)();
|
sl@0
|
345 |
|
sl@0
|
346 |
// check that no handles have leaked
|
sl@0
|
347 |
TInt endProcessHandleCount;
|
sl@0
|
348 |
TInt endThreadHandleCount;
|
sl@0
|
349 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
350 |
|
sl@0
|
351 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
352 |
|
sl@0
|
353 |
__UHEAP_MARKEND;
|
sl@0
|
354 |
}
|
sl@0
|
355 |
|
sl@0
|
356 |
|
sl@0
|
357 |
LOCAL_C void DoTestsL()
|
sl@0
|
358 |
{
|
sl@0
|
359 |
//don't change the order of the tests!
|
sl@0
|
360 |
__UHEAP_MARK;
|
sl@0
|
361 |
PrepareTestEnvironmentL();
|
sl@0
|
362 |
// Basic tests
|
sl@0
|
363 |
DoBasicTestL(&MountFromBootL, _L("MountFromBoot"));
|
sl@0
|
364 |
DoBasicTestL(&UnmountFromBootL, _L("UnmountFromBoot"));
|
sl@0
|
365 |
DoBasicTestL(&MountAfterBootL, _L("MountAfterBoot"));
|
sl@0
|
366 |
DoBasicTestL(&UnmountAfterBootL, _L("UnmountAfterBoot"));
|
sl@0
|
367 |
FinalCleanup();
|
sl@0
|
368 |
__UHEAP_MARKEND;
|
sl@0
|
369 |
}
|
sl@0
|
370 |
|
sl@0
|
371 |
|
sl@0
|
372 |
GLDEF_C TInt E32Main()
|
sl@0
|
373 |
{
|
sl@0
|
374 |
__UHEAP_MARK;
|
sl@0
|
375 |
|
sl@0
|
376 |
test.Title();
|
sl@0
|
377 |
test.Start(_L("Drive Mount Tests."));
|
sl@0
|
378 |
|
sl@0
|
379 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
380 |
CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
381 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
382 |
|
sl@0
|
383 |
TRAPD(err,DoTestsL());
|
sl@0
|
384 |
// Cleanup files
|
sl@0
|
385 |
if(err != KErrNone)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
FinalCleanup();
|
sl@0
|
388 |
REComSession::FinalClose();
|
sl@0
|
389 |
}
|
sl@0
|
390 |
|
sl@0
|
391 |
test(err==KErrNone);
|
sl@0
|
392 |
|
sl@0
|
393 |
delete scheduler;
|
sl@0
|
394 |
delete cleanup;
|
sl@0
|
395 |
|
sl@0
|
396 |
test.End();
|
sl@0
|
397 |
test.Close();
|
sl@0
|
398 |
|
sl@0
|
399 |
__UHEAP_MARKEND;
|
sl@0
|
400 |
return(0);
|
sl@0
|
401 |
}
|