1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kerneltest/e32test/earlyextension/t_testearlyextension.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,58 @@
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_testearlyextension.h"
1.24 +
1.25 +RLddEarlyExtensionTest lddChan;
1.26 +GLDEF_D RTest test(_L("LDD tests"));
1.27 +_LIT(KLddFileName, "D_TESTEARLYEXTENSION.LDD");
1.28 +
1.29 +GLDEF_C TInt E32Main()
1.30 + {
1.31 + test.Title();
1.32 + test.Start(_L("Testing early 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 + Int64 earlyExtTime = 0, extTime = 0;
1.40 + //Get system time stamps
1.41 + r = lddChan.Test_getSystemTimeStamps(earlyExtTime, extTime);
1.42 + test(r == KErrNone);
1.43 + //Compare the time stamps for correctness.
1.44 + //Time stamps got in early extension should be less than (valuewise) the one got in normal extension entry point.
1.45 + if(earlyExtTime > extTime)
1.46 + {
1.47 + test.Printf(_L("Early Extension time stamp %ld is greater than extension time stamp %ld\n"), earlyExtTime, extTime);
1.48 + test(0);
1.49 + }
1.50 + test.Printf(_L("Time stamps are as expected!!!\n"));
1.51 + test.Printf(_L("Closing the channel\n"));
1.52 + lddChan.Close();
1.53 +
1.54 + test.Printf(_L("Freeing logical device\n"));
1.55 + r = User::FreeLogicalDevice(KLddFileName);
1.56 + test(r==KErrNone);
1.57 + User::After(100000);
1.58 + test.End();
1.59 + test.Close();
1.60 + return r;
1.61 + }