sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: CConsoleBase* console; sl@0: sl@0: void WriteArgsL() sl@0: { sl@0: CCommandLineArguments* args=CCommandLineArguments::NewLC(); sl@0: for (TInt i=0; iCount(); i++) sl@0: { sl@0: TPtrC argumentPrt(args->Arg(i)); sl@0: console->Printf(_L("arg %d == %S\n"), i, &argumentPrt); sl@0: } sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: void TestReaderL() sl@0: { sl@0: console=Console::NewL(_L("Command-line arguments reader test"),TSize(KConsFullScreen, KConsFullScreen)); sl@0: CleanupStack::PushL(console); sl@0: WriteArgsL(); sl@0: //The following two lines were removed to support the automated test for T_CLINEPARENT sl@0: //console->Printf(_L("Press any key to exit:")); sl@0: //console->Getch(); sl@0: CleanupStack::PopAndDestroy(console); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; // mark heap state sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack sl@0: TRAPD(error,TestReaderL()); // do most stuff under cleanup stack sl@0: __ASSERT_ALWAYS(!error,User::Invariant()); sl@0: delete cleanup; // destroy clean-up stack sl@0: __UHEAP_MARKEND; // check no memory leak sl@0: return 0; // and return sl@0: } sl@0: