Update contrib.
1 // Copyright (c) 2003-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 // Tests CResourceFile class - memory allocation tests
21 LOCAL_D RTest test(_L("T_RSCMEM"));
25 @SYMTestCaseID SYSLIB-BAFL-CT-0484
26 @SYMTestCaseDesc CResourceFile class test
27 Memory allocation tests
29 @SYMTestActions Tests for the out of memory conditions
30 @SYMTestExpectedResults Tests must not fail
33 LOCAL_C void TestOpenL(const TDesC &aFileName, TUint aFileOffset, TUint aFileSize)
35 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0484 "));
38 for(TInt count = 1; ;count++)
40 __UHEAP_SETFAIL(RHeap::EDeterministic, count);
43 CResourceFile* rsc_file = NULL;
44 TRAPD(err, rsc_file = CResourceFile::NewL(TheFs, aFileName, aFileOffset, aFileSize));
47 if(err == KErrNoMemory)
51 else if(err == KErrNone)
57 User::Panic(_L("CResourceFile::NewL(), error "), err);
63 LOCAL_C void DoTestsL()
65 CleanupClosePushL(TheFs);
66 User::LeaveIfError(TheFs.Connect());
68 ::TestOpenL(_L("z:\\system\\data\\Trsc.rsc"), 0, 0);
70 CleanupStack::PopAndDestroy(1, &TheFs);
73 GLDEF_C TInt E32Main()
76 CTrapCleanup* cleanup = CTrapCleanup::New();
78 test.Start(_L("Testing CResourceFile::NewL()"));
79 TRAPD(err, DoTestsL());
80 test.Printf(_L("Error code is %d\n"), err);
81 test(err == KErrNone);