Update contrib.
1 // Copyright (c) 2007-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.
22 CTestlibz::~CTestlibz()
27 CTestlibz::CTestlibz(const TDesC& aStepName)
29 // MANDATORY Call to base class method to set up the human readable name for logging.
30 SetTestStepName(aStepName);
33 TVerdict CTestlibz::doTestStepPreambleL()
35 SetTestStepResult(EPass);
36 return TestStepResult();
41 TVerdict CTestlibz::doTestStepPostambleL()
43 return TestStepResult();
47 TVerdict CTestlibz::doTestStepL()
53 if(TestStepName() == KLibzcomp_decomp)
55 INFO_PRINTF1(_L("KLibzcomp_decomp():"));
56 err = libzcomp_decomp();
57 SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
60 else if(TestStepName() == KLibzdefl_Infl)
62 INFO_PRINTF1(_L("KLibzdefl_Infl():"));
63 err = libzdefl_Infl();
64 SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
67 else if(TestStepName() == KLibzgzio)
69 INFO_PRINTF1(_L("Kglobmark():"));
71 iRfs.MkDirAll(KDIRPATH);
80 SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
84 SetTestStepResult(EPass);
87 return TestStepResult();