kerneltest/e32test/earlyextension/t_testearlyextension.cpp
author andy simpson <andrews@symbian.org>
Fri, 17 Sep 2010 16:50:19 +0100
branchRCL_3
changeset 264 cbb906b0db9b
parent 0 a41df078684a
permissions -rw-r--r--
Merge re-apply fixes for Bug 2149, 2283, GCCE support and rom_sbs.pl

// Copyright (c) 2007-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\earlyextension\t_testextension.cpp
// 
//

#include <e32test.h>
#include <hal.h>
#include "d_testearlyextension.h"

RLddEarlyExtensionTest lddChan;
GLDEF_D RTest test(_L("LDD tests"));
_LIT(KLddFileName, "D_TESTEARLYEXTENSION.LDD");

GLDEF_C TInt E32Main()
    {
	test.Title();
	test.Start(_L("Testing early extension...\n"));
	//Load logical device
	TInt r = User::LoadLogicalDevice(KLddFileName);
	test((r == KErrNone) || (r == KErrAlreadyExists));
	//Open the channel
	r = lddChan.Open();
    test(r==KErrNone || r==KErrAlreadyExists);
	Int64 earlyExtTime = 0, extTime = 0;
	//Get system time stamps 
	r = lddChan.Test_getSystemTimeStamps(earlyExtTime, extTime);
    test(r == KErrNone);
	//Compare the time stamps for correctness. 
	//Time stamps got in early extension should be less than (valuewise) the one got in normal extension entry point.
	if(earlyExtTime > extTime)
		{
		test.Printf(_L("Early Extension time stamp %ld is greater than extension time stamp %ld\n"), earlyExtTime, extTime);
		test(0);
		}
	test.Printf(_L("Time stamps are as expected!!!\n"));
	test.Printf(_L("Closing the channel\n"));
	lddChan.Close();

	test.Printf(_L("Freeing logical device\n"));
	r = User::FreeLogicalDevice(KLddFileName);
	test(r==KErrNone);
	User::After(100000);
	test.End();
	test.Close();
	return r;
	}