1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kerneltest/e32test/dll/t_wsdextension.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,53 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// e32test\earlyextension\t_testextension.cpp
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32test.h>
1.22 +#include <hal.h>
1.23 +#include "d_wsdextension.h"
1.24 +
1.25 +RLddWsdExtension lddChan;
1.26 +GLDEF_D RTest test(_L("LDD tests"));
1.27 +_LIT(KLddFileName, "D_WSDEXTENSION.LDD");
1.28 +
1.29 +GLDEF_C TInt E32Main()
1.30 + {
1.31 + test.Title();
1.32 + test.Start(_L("Testing WSD extension...\n"));
1.33 + //Load logical device
1.34 + TInt r = User::LoadLogicalDevice(KLddFileName);
1.35 + test((r == KErrNone) || (r == KErrAlreadyExists));
1.36 + //Open the channel
1.37 + r = lddChan.Open();
1.38 + test(r==KErrNone || r==KErrAlreadyExists);
1.39 +
1.40 + TInt data=0;
1.41 + r = lddChan.Test_getStaticData(data);
1.42 + test(r == KErrNone);
1.43 + test(data == 0xEFEFEFEF);
1.44 + test.Printf(_L("Static Data from extension as expected!!!\n"));
1.45 + test.Printf(_L("Closing the channel\n"));
1.46 +
1.47 + lddChan.Close();
1.48 +
1.49 + test.Printf(_L("Freeing logical device\n"));
1.50 + r = User::FreeLogicalDevice(KLddFileName);
1.51 + test(r==KErrNone);
1.52 + User::After(100000);
1.53 + test.End();
1.54 + test.Close();
1.55 + return r;
1.56 + }