diff -r 000000000000 -r a41df078684a kerneltest/e32test/dll/t_staticdata.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kerneltest/e32test/dll/t_staticdata.cpp Mon Oct 19 15:55:17 2009 +0100 @@ -0,0 +1,86 @@ +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of the License "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// e32test\dll\t_staticdata.cpp +// Overview: +// Test static data is initialised correctly +// API Information: +// n/a +// Details: +// Platforms/Drives/Compatibility: +// All. +// Assumptions/Requirement/Pre-requisites: +// Failures and causes: +// Base Port information: +// +// + +#define __E32TEST_EXTENSION__ + +#include +#include + + +const TUint32 KTestValue = 0x12345678; +TInt E32Main(); + +// initialised static data... +TUint32 Data[4] = {0,KTestValue,~KTestValue,0xffffffffu}; +TInt (*CodePointer)() = &E32Main; +TUint32* DataPointer = Data; +TUint32 Bss[4] = {0}; + + +TInt E32Main() + { + RTest test(_L("T_STATICDATA")); + test.Title(); + + // Turn off evil lazy dll unloading + RLoader l; + test(l.Connect()==KErrNone); + test(l.CancelLazyDllUnload()==KErrNone); + l.Close(); + + test.Start(_L("Test static data in EXEs")); + + test_Equal(0,Data[0]); + test_Equal(KTestValue,Data[1]); + test_Equal(~KTestValue,Data[2]); + test_Equal(0xffffffffu,Data[3]); + + test_Equal(&E32Main,CodePointer); + + test_Equal(Data,DataPointer); + + TInt i; + for(i=0; i