sl@0
|
1 |
// Copyright (c) 1997-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 |
#include <e32cons.h>
|
sl@0
|
17 |
#include <bacline.h>
|
sl@0
|
18 |
|
sl@0
|
19 |
CConsoleBase* console;
|
sl@0
|
20 |
|
sl@0
|
21 |
void WriteArgsL()
|
sl@0
|
22 |
{
|
sl@0
|
23 |
CCommandLineArguments* args=CCommandLineArguments::NewLC();
|
sl@0
|
24 |
for (TInt i=0; i<args->Count(); i++)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
TPtrC argumentPrt(args->Arg(i));
|
sl@0
|
27 |
console->Printf(_L("arg %d == %S\n"), i, &argumentPrt);
|
sl@0
|
28 |
}
|
sl@0
|
29 |
CleanupStack::PopAndDestroy();
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
void TestReaderL()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
console=Console::NewL(_L("Command-line arguments reader test"),TSize(KConsFullScreen, KConsFullScreen));
|
sl@0
|
35 |
CleanupStack::PushL(console);
|
sl@0
|
36 |
WriteArgsL();
|
sl@0
|
37 |
//The following two lines were removed to support the automated test for T_CLINEPARENT
|
sl@0
|
38 |
//console->Printf(_L("Press any key to exit:"));
|
sl@0
|
39 |
//console->Getch();
|
sl@0
|
40 |
CleanupStack::PopAndDestroy(console);
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
GLDEF_C TInt E32Main()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
__UHEAP_MARK; // mark heap state
|
sl@0
|
46 |
CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack
|
sl@0
|
47 |
TRAPD(error,TestReaderL()); // do most stuff under cleanup stack
|
sl@0
|
48 |
__ASSERT_ALWAYS(!error,User::Invariant());
|
sl@0
|
49 |
delete cleanup; // destroy clean-up stack
|
sl@0
|
50 |
__UHEAP_MARKEND; // check no memory leak
|
sl@0
|
51 |
return 0; // and return
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|