Update contrib.
1 // Copyright (c) 1997-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 LOCAL_D RTest test(_L("t_command"));
23 @SYMTestCaseID SYSLIB-BAFL-CT-0485
24 @SYMTestCaseDesc Tests the behaviour of long command line arguments
26 @SYMTestActions Tests for long command line arguments by creating another process.
27 @SYMTestExpectedResults Tests must not fail
30 void RunChildProcessL()
32 //passing a very long command line argument with more than 256 characters
33 TBuf<300> longargument(_L("verylongargument verylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargument"));
34 test.Printf(_L("Test for command line argument with %d characters \n"),longargument.Length());
36 //Creating another process to run T_CLINE with very long command line arguments
37 TInt err=me.Create(_L("T_CLINE"),longargument);
38 if (err==KErrNotFound)
39 err=me.Create(_L("z:\\test\\T_CLINE"),longargument);
42 //Checking that the child proces T_CLINE executes properly with no panic
43 TRequestStatus status;
46 User::WaitForRequest(status);
47 test(status==KErrNone);
49 test(me.ExitType()==EExitKill);
50 test(me.ExitReason()==KErrNone);
58 GLDEF_C TInt E32Main()
61 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0485 Starting tests... "));
63 CTrapCleanup* cleanup=CTrapCleanup::New();
64 TRAPD(error,RunChildProcessL());
65 test(error==KErrNone);