author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
sl@0 | 2 |
// All rights reserved. |
sl@0 | 3 |
// This component and the accompanying materials are made available |
sl@0 | 4 |
// under the terms of "Eclipse Public License v1.0" |
sl@0 | 5 |
// which accompanies this distribution, and is available |
sl@0 | 6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
sl@0 | 7 |
// |
sl@0 | 8 |
// Initial Contributors: |
sl@0 | 9 |
// Nokia Corporation - initial contribution. |
sl@0 | 10 |
// |
sl@0 | 11 |
// Contributors: |
sl@0 | 12 |
// |
sl@0 | 13 |
// Description: |
sl@0 | 14 |
// |
sl@0 | 15 |
|
sl@0 | 16 |
/** |
sl@0 | 17 |
@file |
sl@0 | 18 |
@test |
sl@0 | 19 |
@internalComponent - Internal Symbian test code |
sl@0 | 20 |
*/ |
sl@0 | 21 |
|
sl@0 | 22 |
|
sl@0 | 23 |
#include "test_srv.h" |
sl@0 | 24 |
#include "test_step_comparison.h" |
sl@0 | 25 |
|
sl@0 | 26 |
|
sl@0 | 27 |
CWServTestSrv* CWServTestSrv::NewLC( ) |
sl@0 | 28 |
{ |
sl@0 | 29 |
CWServTestSrv* server = new (ELeave) CWServTestSrv(); |
sl@0 | 30 |
CleanupStack::PushL(server); |
sl@0 | 31 |
TParsePtrC serverName(RProcess().FileName()); |
sl@0 | 32 |
server->StartL(serverName.Name()); |
sl@0 | 33 |
return server; |
sl@0 | 34 |
} |
sl@0 | 35 |
|
sl@0 | 36 |
static void MainL() |
sl@0 | 37 |
{ |
sl@0 | 38 |
CActiveScheduler* sched = new(ELeave) CActiveScheduler; |
sl@0 | 39 |
CleanupStack::PushL (sched); |
sl@0 | 40 |
CActiveScheduler::Install (sched); |
sl@0 | 41 |
|
sl@0 | 42 |
CWServTestSrv* server = CWServTestSrv::NewLC( ); |
sl@0 | 43 |
RProcess::Rendezvous (KErrNone ); |
sl@0 | 44 |
sched->Start( ); |
sl@0 | 45 |
|
sl@0 | 46 |
CleanupStack::PopAndDestroy (server ); |
sl@0 | 47 |
CleanupStack::PopAndDestroy (sched ); |
sl@0 | 48 |
} |
sl@0 | 49 |
|
sl@0 | 50 |
/** |
sl@0 | 51 |
Process entry point. Called by client using RProcess API |
sl@0 | 52 |
@return - Standard Epoc error code on process exit |
sl@0 | 53 |
*/ |
sl@0 | 54 |
TInt E32Main(void) //lint -e765 -e714 Suppress 'not referenced' and 'could be static' |
sl@0 | 55 |
{ |
sl@0 | 56 |
|
sl@0 | 57 |
//__asm { int 3 }; |
sl@0 | 58 |
//__DEBUGGER(); |
sl@0 | 59 |
__UHEAP_MARK; |
sl@0 | 60 |
CTrapCleanup* cleanup = CTrapCleanup::New(); |
sl@0 | 61 |
if(cleanup == NULL) |
sl@0 | 62 |
{ |
sl@0 | 63 |
return KErrNoMemory; |
sl@0 | 64 |
} |
sl@0 | 65 |
TRAPD(err,MainL()); |
sl@0 | 66 |
if (err) |
sl@0 | 67 |
{ |
sl@0 | 68 |
_LIT(KMainErrorStatement, "ProjectTestServer::MainL - Error: %d"); |
sl@0 | 69 |
RDebug::Print(KMainErrorStatement, err); |
sl@0 | 70 |
_LIT(KProjectTestServerName, "ProjectTestServer"); |
sl@0 | 71 |
User::Panic(KProjectTestServerName, err); |
sl@0 | 72 |
} |
sl@0 | 73 |
delete cleanup; |
sl@0 | 74 |
|
sl@0 | 75 |
__UHEAP_MARKEND; |
sl@0 | 76 |
return KErrNone; |
sl@0 | 77 |
} |
sl@0 | 78 |
|
sl@0 | 79 |
/** |
sl@0 | 80 |
@return - A CTestStep derived instance |
sl@0 | 81 |
*/ |
sl@0 | 82 |
CTestStep* CWServTestSrv::CreateTestStep(const TDesC& aStepName ) |
sl@0 | 83 |
{ |
sl@0 | 84 |
CTestStep* testStep = NULL; |
sl@0 | 85 |
if (aStepName == KServStressTest) |
sl@0 | 86 |
{ |
sl@0 | 87 |
testStep = new CWServTestStep(); |
sl@0 | 88 |
} |
sl@0 | 89 |
else |
sl@0 | 90 |
{ |
sl@0 | 91 |
RDebug::Printf ("Unknown test step %S", &aStepName ); |
sl@0 | 92 |
} |
sl@0 | 93 |
|
sl@0 | 94 |
return testStep; |
sl@0 | 95 |
} |