Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @internalComponent - Internal Symbian test code
24 #include "test_step_comparison.h"
27 CWServTestSrv* CWServTestSrv::NewLC( )
29 CWServTestSrv* server = new (ELeave) CWServTestSrv();
30 CleanupStack::PushL(server);
31 TParsePtrC serverName(RProcess().FileName());
32 server->StartL(serverName.Name());
38 CActiveScheduler* sched = new(ELeave) CActiveScheduler;
39 CleanupStack::PushL (sched);
40 CActiveScheduler::Install (sched);
42 CWServTestSrv* server = CWServTestSrv::NewLC( );
43 RProcess::Rendezvous (KErrNone );
46 CleanupStack::PopAndDestroy (server );
47 CleanupStack::PopAndDestroy (sched );
51 Process entry point. Called by client using RProcess API
52 @return - Standard Epoc error code on process exit
54 TInt E32Main(void) //lint -e765 -e714 Suppress 'not referenced' and 'could be static'
60 CTrapCleanup* cleanup = CTrapCleanup::New();
68 _LIT(KMainErrorStatement, "ProjectTestServer::MainL - Error: %d");
69 RDebug::Print(KMainErrorStatement, err);
70 _LIT(KProjectTestServerName, "ProjectTestServer");
71 User::Panic(KProjectTestServerName, err);
80 @return - A CTestStep derived instance
82 CTestStep* CWServTestSrv::CreateTestStep(const TDesC& aStepName )
84 CTestStep* testStep = NULL;
85 if (aStepName == KServStressTest)
87 testStep = new CWServTestStep();
91 RDebug::Printf ("Unknown test step %S", &aStepName );