Update contrib.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #include "tHardcodedTests.h"
20 #include "Thardcodedsetup.h"
23 #include "t_certstoreactionmemfail.h"
25 #include "t_message.h"
27 #include "tTestSpec.h"
28 #include "t_testactionspec.h"
32 EXPORT_C CHardcodedSetup* CHardcodedSetup::NewLC(void)
34 CHardcodedSetup* self = new(ELeave) CHardcodedSetup();
35 CleanupStack::PushL(self);
40 EXPORT_C void CHardcodedSetup::SetupTestsL(RFs& aFs,
42 THardcodedTests theHardcodedTests[],
43 const CTestHandlerSettings& aCommandLineSettings)
46 for (TInt i = 0; theHardcodedTests[i].action!=NULL; i++)
49 TInt groupings= theHardcodedTests[i].groupings;
50 TTestActionSpec actionSpec;
51 actionSpec.HardcodedInit(theHardcodedTests[i].name);
52 //Start off checking Exhaustive and Smoke flags, then calls groupings
53 if (!CheckAllFlags(aCommandLineSettings, groupings))
54 //The current test should not be run
58 CTestAction* newAction = 0;
60 newAction = theHardcodedTests[i].action(aFs, *iConsole, *iLogFile, actionSpec));
64 // We warn the user that an error occured
65 // IMPROVEMENT : we should give more details because this won't be enough
66 PRINTANDLOG(_L("void CHardcoded::SetupTestsL(RPointerArray<CTestAction>& aTestActions)\n"));
67 PRINTANDLOG1(_L("An error occurred while creating action %D\n"), i);
70 CleanupStack::PushL(newAction);
71 User::LeaveIfError(aTestSpec.AddNextTest(newAction));
72 CleanupStack::Pop(newAction);
77 CHardcodedSetup::~CHardcodedSetup()
81 CHardcodedSetup::CHardcodedSetup(void)
86 EXPORT_C TBool CHardcodedSetup::InitialiseL(RFs &aFs, const TDesC& aDefaultLog)
88 TRAPD(err, OpenLogFileL(aFs, 0, aDefaultLog));
92 // We warn the user that an error occured
93 // IMPROVEMENT : we should give more details because this won't be enough
94 PRINTANDLOG1(_L("void CHardcodedSetup::InitialiseL: Failed to open log file: %D\n"), err);