stvariants/montblanc/src/soc/core/genepi/test/t_genepi_st_08/src/t_genepi_st_08.cpp
changeset 14 cf4c5641c6dd
parent 12 a80bfc23ff0e
child 15 ac35e54b1f85
child 17 ce191d16bb9a
child 19 703c56cf2669
--- a/stvariants/montblanc/src/soc/core/genepi/test/t_genepi_st_08/src/t_genepi_st_08.cpp	Mon May 03 13:33:44 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,64 +0,0 @@
-/*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "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: 
-*
-*/
-/*****************************************************************************/
-/**
-*  © ST-Ericsson, 2009 - All rights reserved
-*  Reproduction and Communication of this document is strictly prohibited
-*  unless specifically authorized in writing by ST-Ericsson
-*
-*  File Name:t_genepi_st_08.cpp Test application file
-* author  ST-Ericsson
-*/
-/*****************************************************************************/ 
-
-/****************************************************************************
- * Includes
- ****************************************************************************/
-#include "t_genepi_st_08blocks.h"
-
-/****************************************************************************
-FUNCTION : MainL
-PURPOSE  : Genepi driver tests
- *****************************************************************************/
-LOCAL_C void MainL()
-{
-	Ct_genepi_st_08blocks* gTest = Ct_genepi_st_08blocks::NewL( );
-	CleanupStack::PushL( gTest );
-	gTest->RunAllTest05();
-	CleanupStack::Pop();
-}
-
-/****************************************************************************
-FUNCTION : E32Main
-PURPOSE  : Entry routine for the Test program
- *****************************************************************************/
-
-GLDEF_C TInt E32Main()
-	/**
-	 * @return - Standard Epoc error code on exit
-	 */
-{
-	CTrapCleanup* cleanup = CTrapCleanup::New();
-	if(cleanup == NULL)
-	{
-		return KErrNoMemory;
-	}
-	TRAP_IGNORE(MainL());
-	delete cleanup;
-	return KErrNone;
-}
-