sl@0
|
1 |
// Copyright (c) 1998-2010 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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <s32file.h>
|
sl@0
|
17 |
#include <e32test.h>
|
sl@0
|
18 |
|
sl@0
|
19 |
const TInt KTestCleanupStack=0x20;
|
sl@0
|
20 |
|
sl@0
|
21 |
// This is a path specification and should not be used as is
|
sl@0
|
22 |
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FDIR.DAT");
|
sl@0
|
23 |
const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
|
sl@0
|
24 |
const TInt KTestLength=36;
|
sl@0
|
25 |
const TInt KTestTotal=KTestLength*(KTestLength+1);
|
sl@0
|
26 |
const TPtrC8 KTestDes(KTestData,KTestLength);
|
sl@0
|
27 |
|
sl@0
|
28 |
LOCAL_D CTrapCleanup* TheTrapCleanup;
|
sl@0
|
29 |
LOCAL_D RTest test(_L("t_storfdir"));
|
sl@0
|
30 |
LOCAL_D RFs TheFs;
|
sl@0
|
31 |
LOCAL_D TFileName TheTempFile;
|
sl@0
|
32 |
LOCAL_D TBuf8<KTestLength+1> TheBuf;
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
@SYMTestCaseID SYSLIB-STORE-CT-1147
|
sl@0
|
36 |
@SYMTestCaseDesc Writing to a store test
|
sl@0
|
37 |
@SYMTestPriority High
|
sl@0
|
38 |
@SYMTestActions Tests for writing to a store
|
sl@0
|
39 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
40 |
@SYMREQ REQ0000
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
LOCAL_C void testWriteL(CPersistentStore& aStore)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1147 Writing... "));
|
sl@0
|
45 |
RStoreWriteStream out;
|
sl@0
|
46 |
TStreamId id=out.CreateLC(aStore);
|
sl@0
|
47 |
for (TInt i=0;i<=KTestLength;++i)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
out.WriteL(KTestDes,i);
|
sl@0
|
50 |
out.WriteL(&KTestData[i],KTestLength-i);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
out.CommitL();
|
sl@0
|
53 |
out.Close();
|
sl@0
|
54 |
aStore.SetRootL(out.CreateL(aStore));
|
sl@0
|
55 |
out<<KTestDes;
|
sl@0
|
56 |
out<<id;
|
sl@0
|
57 |
out.CommitL();
|
sl@0
|
58 |
CleanupStack::PopAndDestroy();
|
sl@0
|
59 |
}
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
@SYMTestCaseID SYSLIB-STORE-CT-1148
|
sl@0
|
62 |
@SYMTestCaseDesc Reading from a stream test
|
sl@0
|
63 |
@SYMTestPriority High
|
sl@0
|
64 |
@SYMTestActions Attempt for reading data from a stream
|
sl@0
|
65 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
66 |
@SYMREQ REQ0000
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
LOCAL_C void testReadL(RReadStream& aStream)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1148 "));
|
sl@0
|
71 |
for (TInt i=KTestLength;i>=0;--i)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
aStream.ReadL(TheBuf,i);
|
sl@0
|
74 |
test(TheBuf.Length()==i);
|
sl@0
|
75 |
TheBuf.SetMax();
|
sl@0
|
76 |
aStream.ReadL(&TheBuf[i],KTestLength-i);
|
sl@0
|
77 |
TheBuf.SetLength(KTestLength);
|
sl@0
|
78 |
test(TheBuf==KTestDes);
|
sl@0
|
79 |
}
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
//
|
sl@0
|
83 |
// Test reading from a store
|
sl@0
|
84 |
//
|
sl@0
|
85 |
LOCAL_C void testReadL(const CPersistentStore& aStore)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1148 Reading... "));
|
sl@0
|
88 |
RStoreReadStream in;
|
sl@0
|
89 |
in.OpenLC(aStore,aStore.Root());
|
sl@0
|
90 |
in>>TheBuf;
|
sl@0
|
91 |
TStreamId id;
|
sl@0
|
92 |
in>>id;
|
sl@0
|
93 |
in.Close();
|
sl@0
|
94 |
in.OpenL(aStore,id);
|
sl@0
|
95 |
testReadL(in);
|
sl@0
|
96 |
CleanupStack::PopAndDestroy();
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
//
|
sl@0
|
100 |
// Test copying from one stream to another.
|
sl@0
|
101 |
//
|
sl@0
|
102 |
LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
test.Next(_L("Copying"));
|
sl@0
|
105 |
for (TInt i=KTestLength;i>=0;--i)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
aWriteStream.WriteL(aReadStream,i);
|
sl@0
|
108 |
aReadStream.ReadL(aWriteStream,KTestLength-i);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
}
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
@SYMTestCaseID SYSLIB-STORE-CT-1149
|
sl@0
|
113 |
@SYMTestCaseDesc Tests writing using a direct file store
|
sl@0
|
114 |
@SYMTestPriority High
|
sl@0
|
115 |
@SYMTestActions Tests for memory and end of file error while creating the store.
|
sl@0
|
116 |
Tests for writing to replaced,temporary,opened,created file.
|
sl@0
|
117 |
Tests for creating an already existing file.
|
sl@0
|
118 |
Tests for panic while deleting a file.
|
sl@0
|
119 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
120 |
@SYMREQ REQ0000
|
sl@0
|
121 |
*/
|
sl@0
|
122 |
LOCAL_C void testWriteL()
|
sl@0
|
123 |
{
|
sl@0
|
124 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1149 Creating and failing to open 'ghost' file "));
|
sl@0
|
125 |
|
sl@0
|
126 |
TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
|
sl@0
|
127 |
TParse parse;
|
sl@0
|
128 |
parse.Set(drive.Name(), &KFileLocationSpec, NULL);
|
sl@0
|
129 |
|
sl@0
|
130 |
TheFs.Delete(parse.NameAndExt());
|
sl@0
|
131 |
CFileStore* store=CDirectFileStore::CreateLC(TheFs,parse.NameAndExt(),EFileWrite);
|
sl@0
|
132 |
CleanupStack::PopAndDestroy();
|
sl@0
|
133 |
store=NULL;
|
sl@0
|
134 |
TRAPD(r,store=CDirectFileStore::OpenL(TheFs,parse.NameAndExt(),EFileRead|EFileWrite));
|
sl@0
|
135 |
test(store==NULL&&r==KErrEof);
|
sl@0
|
136 |
//
|
sl@0
|
137 |
test.Next(_L("Writing to replaced file"));
|
sl@0
|
138 |
store=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
|
sl@0
|
139 |
store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KDirectFileStoreLayoutUid));
|
sl@0
|
140 |
testWriteL(*store);
|
sl@0
|
141 |
CleanupStack::PopAndDestroy();
|
sl@0
|
142 |
//
|
sl@0
|
143 |
test.Next(_L("Writing to replaced file - 2"));
|
sl@0
|
144 |
store=CDirectFileStore::ReplaceL(TheFs,parse.NameAndExt(),EFileWrite);
|
sl@0
|
145 |
CleanupStack::PushL(store);
|
sl@0
|
146 |
store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KDirectFileStoreLayoutUid));
|
sl@0
|
147 |
testWriteL(*store);
|
sl@0
|
148 |
CleanupStack::PopAndDestroy();
|
sl@0
|
149 |
//
|
sl@0
|
150 |
test.Next(_L("Writing to temp file"));
|
sl@0
|
151 |
store=CDirectFileStore::TempLC(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite);
|
sl@0
|
152 |
store->SetTypeL(TUidType(store->Layout(),KNullUid,KDirectFileStoreLayoutUid));
|
sl@0
|
153 |
testWriteL(*store);
|
sl@0
|
154 |
store->CommitL();
|
sl@0
|
155 |
CleanupStack::PopAndDestroy();
|
sl@0
|
156 |
(void)TheFs.Delete(TheTempFile);
|
sl@0
|
157 |
//
|
sl@0
|
158 |
test.Next(_L("Writing to temp file - 2"));
|
sl@0
|
159 |
store=CDirectFileStore::TempL(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite);
|
sl@0
|
160 |
CleanupStack::PushL(store);
|
sl@0
|
161 |
store->SetTypeL(TUidType(store->Layout(),KNullUid,KDirectFileStoreLayoutUid));
|
sl@0
|
162 |
testWriteL(*store);
|
sl@0
|
163 |
store->CommitL();
|
sl@0
|
164 |
CleanupStack::PopAndDestroy();
|
sl@0
|
165 |
//
|
sl@0
|
166 |
test.Next(_L("Writing to opened file"));
|
sl@0
|
167 |
store=CDirectFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
|
sl@0
|
168 |
testWriteL(*store);
|
sl@0
|
169 |
store->CommitL();
|
sl@0
|
170 |
CleanupStack::PopAndDestroy();
|
sl@0
|
171 |
//
|
sl@0
|
172 |
test.Next(_L("Failing to create existing file"));
|
sl@0
|
173 |
store=NULL;
|
sl@0
|
174 |
TRAP(r,store=CDirectFileStore::CreateL(TheFs,TheTempFile,EFileWrite));
|
sl@0
|
175 |
test(store==NULL&&r==KErrAlreadyExists);
|
sl@0
|
176 |
if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
|
sl@0
|
177 |
test.Panic(_L("Deleting file"));
|
sl@0
|
178 |
//
|
sl@0
|
179 |
test.Next(_L("Writing to created file"));
|
sl@0
|
180 |
RFile file;
|
sl@0
|
181 |
test(file.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
|
sl@0
|
182 |
store=CDirectFileStore::NewLC(file);
|
sl@0
|
183 |
CleanupStack::PopAndDestroy();
|
sl@0
|
184 |
test(file.Open(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
|
sl@0
|
185 |
store=CDirectFileStore::NewL(file);
|
sl@0
|
186 |
CleanupStack::PushL(store);
|
sl@0
|
187 |
store->SetTypeL(KDirectFileStoreLayoutUid);
|
sl@0
|
188 |
testWriteL(*store);
|
sl@0
|
189 |
store->CommitL();
|
sl@0
|
190 |
CleanupStack::PopAndDestroy();
|
sl@0
|
191 |
}
|
sl@0
|
192 |
/**
|
sl@0
|
193 |
@SYMTestCaseID SYSLIB-STORE-CT-1150
|
sl@0
|
194 |
@SYMTestCaseDesc Tests reading from an opened file
|
sl@0
|
195 |
@SYMTestPriority High
|
sl@0
|
196 |
@SYMTestActions Tests for reading using a direct file store
|
sl@0
|
197 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
198 |
@SYMREQ REQ0000
|
sl@0
|
199 |
*/
|
sl@0
|
200 |
LOCAL_C void testReadL()
|
sl@0
|
201 |
{
|
sl@0
|
202 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1150 Reading from opened file "));
|
sl@0
|
203 |
TParsePtrC parse(KFileLocationSpec);
|
sl@0
|
204 |
|
sl@0
|
205 |
RFile file;
|
sl@0
|
206 |
test(file.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
|
sl@0
|
207 |
CFileStore* store=CFileStore::FromL(file);
|
sl@0
|
208 |
CleanupStack::PushL(store);
|
sl@0
|
209 |
testReadL(*store);
|
sl@0
|
210 |
store->CommitL();
|
sl@0
|
211 |
TRAPD(r, store->RevertL());
|
sl@0
|
212 |
test(r== KErrNotSupported);
|
sl@0
|
213 |
CleanupStack::PopAndDestroy();
|
sl@0
|
214 |
//
|
sl@0
|
215 |
test.Next(_L("Reading from temp file"));
|
sl@0
|
216 |
test(file.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
|
sl@0
|
217 |
store=CDirectFileStore::FromLC(file);
|
sl@0
|
218 |
testReadL(*store);
|
sl@0
|
219 |
CleanupStack::PopAndDestroy();
|
sl@0
|
220 |
|
sl@0
|
221 |
test.Next(_L("Reading from temp file - 2"));
|
sl@0
|
222 |
test(file.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
|
sl@0
|
223 |
store=CDirectFileStore::FromL(file);
|
sl@0
|
224 |
CleanupStack::PushL(store);
|
sl@0
|
225 |
testReadL(*store);
|
sl@0
|
226 |
CleanupStack::PopAndDestroy();
|
sl@0
|
227 |
}
|
sl@0
|
228 |
/**
|
sl@0
|
229 |
@SYMTestCaseID SYSLIB-STORE-CT-1151
|
sl@0
|
230 |
@SYMTestCaseDesc Copying to a single file store test.
|
sl@0
|
231 |
@SYMTestPriority High
|
sl@0
|
232 |
@SYMTestActions Test for copying using different buffer sizes
|
sl@0
|
233 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
234 |
@SYMREQ REQ0000
|
sl@0
|
235 |
*/
|
sl@0
|
236 |
LOCAL_C void testCopyL()
|
sl@0
|
237 |
{
|
sl@0
|
238 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1151 Copying using small transfers "));
|
sl@0
|
239 |
TParsePtrC parse(KFileLocationSpec);
|
sl@0
|
240 |
|
sl@0
|
241 |
CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
|
sl@0
|
242 |
RStoreReadStream in;
|
sl@0
|
243 |
in.OpenLC(*store,store->Root());
|
sl@0
|
244 |
in>>TheBuf;
|
sl@0
|
245 |
TStreamId copyId;
|
sl@0
|
246 |
in>>copyId;
|
sl@0
|
247 |
in.Close();
|
sl@0
|
248 |
in.OpenL(*store,copyId);
|
sl@0
|
249 |
RStoreWriteStream out;
|
sl@0
|
250 |
TStreamId id=out.CreateLC(*store);
|
sl@0
|
251 |
testCopyL(out,in);
|
sl@0
|
252 |
out.CommitL();
|
sl@0
|
253 |
out.Close();
|
sl@0
|
254 |
in.Close();
|
sl@0
|
255 |
in.OpenL(*store,id);
|
sl@0
|
256 |
testReadL(in);
|
sl@0
|
257 |
in.Close();
|
sl@0
|
258 |
//
|
sl@0
|
259 |
test.Next(_L("Copying using a single big transfer"));
|
sl@0
|
260 |
in.OpenL(*store,copyId);
|
sl@0
|
261 |
id=out.CreateL(*store);
|
sl@0
|
262 |
in.ReadL(out,KTestTotal);
|
sl@0
|
263 |
out.CommitL();
|
sl@0
|
264 |
out.Close();
|
sl@0
|
265 |
in.Close();
|
sl@0
|
266 |
in.OpenL(*store,id);
|
sl@0
|
267 |
testReadL(in);
|
sl@0
|
268 |
in.Close();
|
sl@0
|
269 |
in.OpenL(*store,copyId);
|
sl@0
|
270 |
id=out.CreateL(*store);
|
sl@0
|
271 |
out.WriteL(in,KTestTotal);
|
sl@0
|
272 |
out.CommitL();
|
sl@0
|
273 |
out.Close();
|
sl@0
|
274 |
in.Close();
|
sl@0
|
275 |
in.OpenL(*store,id);
|
sl@0
|
276 |
testReadL(in);
|
sl@0
|
277 |
//
|
sl@0
|
278 |
CleanupStack::PopAndDestroy(3);
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
//
|
sl@0
|
282 |
// Prepare the test directory.
|
sl@0
|
283 |
//
|
sl@0
|
284 |
LOCAL_C void setupTestDirectory()
|
sl@0
|
285 |
{
|
sl@0
|
286 |
TInt r=TheFs.Connect();
|
sl@0
|
287 |
test(r==KErrNone);
|
sl@0
|
288 |
//
|
sl@0
|
289 |
TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
|
sl@0
|
290 |
TParse parse;
|
sl@0
|
291 |
parse.Set(drive.Name(), &KFileLocationSpec, NULL);
|
sl@0
|
292 |
|
sl@0
|
293 |
r=TheFs.MkDir(parse.DriveAndPath());
|
sl@0
|
294 |
test(r==KErrNone||r==KErrAlreadyExists);
|
sl@0
|
295 |
r=TheFs.SetSessionPath(parse.DriveAndPath());
|
sl@0
|
296 |
test(r==KErrNone);
|
sl@0
|
297 |
}
|
sl@0
|
298 |
|
sl@0
|
299 |
//
|
sl@0
|
300 |
// Initialise the cleanup stack.
|
sl@0
|
301 |
//
|
sl@0
|
302 |
LOCAL_C void setupCleanup()
|
sl@0
|
303 |
{
|
sl@0
|
304 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
305 |
test(TheTrapCleanup!=NULL);
|
sl@0
|
306 |
TRAPD(r,\
|
sl@0
|
307 |
{\
|
sl@0
|
308 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
309 |
CleanupStack::PushL((TAny*)0);\
|
sl@0
|
310 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
311 |
});
|
sl@0
|
312 |
test(r==KErrNone);
|
sl@0
|
313 |
}
|
sl@0
|
314 |
|
sl@0
|
315 |
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
RFs fsSession;
|
sl@0
|
318 |
TInt err = fsSession.Connect();
|
sl@0
|
319 |
if(err == KErrNone)
|
sl@0
|
320 |
{
|
sl@0
|
321 |
TEntry entry;
|
sl@0
|
322 |
if(fsSession.Entry(aFullName, entry) == KErrNone)
|
sl@0
|
323 |
{
|
sl@0
|
324 |
RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
|
sl@0
|
325 |
err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
|
sl@0
|
326 |
if(err != KErrNone)
|
sl@0
|
327 |
{
|
sl@0
|
328 |
RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
|
sl@0
|
329 |
}
|
sl@0
|
330 |
err = fsSession.Delete(aFullName);
|
sl@0
|
331 |
if(err != KErrNone)
|
sl@0
|
332 |
{
|
sl@0
|
333 |
RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
}
|
sl@0
|
336 |
fsSession.Close();
|
sl@0
|
337 |
}
|
sl@0
|
338 |
else
|
sl@0
|
339 |
{
|
sl@0
|
340 |
RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
|
sl@0
|
341 |
}
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
GLDEF_C TInt E32Main()
|
sl@0
|
345 |
//
|
sl@0
|
346 |
// Test direct file store.
|
sl@0
|
347 |
//
|
sl@0
|
348 |
{
|
sl@0
|
349 |
test.Title();
|
sl@0
|
350 |
setupTestDirectory();
|
sl@0
|
351 |
setupCleanup();
|
sl@0
|
352 |
__UHEAP_MARK;
|
sl@0
|
353 |
//
|
sl@0
|
354 |
test.Start(_L("Test direct file store"));
|
sl@0
|
355 |
TRAPD(r,testWriteL());
|
sl@0
|
356 |
test(r==KErrNone);
|
sl@0
|
357 |
TRAP(r,testReadL());
|
sl@0
|
358 |
test(r==KErrNone);
|
sl@0
|
359 |
TRAP(r,testCopyL());
|
sl@0
|
360 |
test(r==KErrNone);
|
sl@0
|
361 |
|
sl@0
|
362 |
//deletion of data files must be before call to .End() - DEF047652
|
sl@0
|
363 |
TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
|
sl@0
|
364 |
TParse parse;
|
sl@0
|
365 |
parse.Set(drive.Name(), &KFileLocationSpec, NULL);
|
sl@0
|
366 |
::DeleteDataFile(parse.FullName());
|
sl@0
|
367 |
|
sl@0
|
368 |
test.End();
|
sl@0
|
369 |
//
|
sl@0
|
370 |
__UHEAP_MARKEND;
|
sl@0
|
371 |
|
sl@0
|
372 |
delete TheTrapCleanup;
|
sl@0
|
373 |
if (TheFs.Delete(TheTempFile)!=KErrNone)
|
sl@0
|
374 |
test.Panic(_L("Deleting temp file"));
|
sl@0
|
375 |
TheFs.Close();
|
sl@0
|
376 |
test.Close();
|
sl@0
|
377 |
return 0;
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|