diff -r c1f20ce4abcf -r 3e88ff8f41d5 kerneltest/e32test/usbho/t_otgdi/src/testcase0670.cpp --- a/kerneltest/e32test/usbho/t_otgdi/src/testcase0670.cpp Tue Aug 31 16:34:26 2010 +0300 +++ b/kerneltest/e32test/usbho/t_otgdi/src/testcase0670.cpp Wed Sep 01 12:34:56 2010 +0100 @@ -1,4 +1,4 @@ -// Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of the License "Eclipse Public License v1.0" @@ -24,10 +24,6 @@ #include "testcaseroot.h" #include "testcasewd.h" #include "testcase0670.h" -#include "OstTraceDefinitions.h" -#ifdef OST_TRACE_COMPILER_IN_USE -#include "testcase0670Traces.h" -#endif @@ -38,10 +34,7 @@ CTestCase0670* CTestCase0670::NewL(TBool aHost) { - if(gVerboseOutput) - { - OstTraceFunctionEntry0(CTESTCASE0670_NEWL); - } + LOG_FUNC CTestCase0670* self = new (ELeave) CTestCase0670(aHost); CleanupStack::PushL(self); self->ConstructL(); @@ -53,10 +46,7 @@ CTestCase0670::CTestCase0670(TBool aHost) : CTestCaseRoot(KTestCaseId, aHost) { - if(gVerboseOutput) - { - OstTraceFunctionEntry0(CTESTCASE0670_CTESTCASE0670); - } + LOG_FUNC } @@ -92,10 +82,7 @@ void CTestCase0670::DoCancel() { - if(gVerboseOutput) - { - OstTraceFunctionEntry0(CTESTCASE0670_DOCANCEL); - } + LOG_FUNC // cancel our timer iTimer.Cancel(); @@ -123,29 +110,19 @@ { // H4 width **************************** test.Printf(_L("***************************\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_DESCRIBEPRECONDITIONS, "***************************\n"); test.Printf(_L("* This test uses a Mini-A *\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_DESCRIBEPRECONDITIONS_DUP01, "* This test uses a Mini-A *\n"); test.Printf(_L("* to Mini-B cable to link *\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_DESCRIBEPRECONDITIONS_DUP02, "* to Mini-B cable to link *\n"); test.Printf(_L("* the H4 board to the OPT *\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_DESCRIBEPRECONDITIONS_DUP03, "* the H4 board to the OPT *\n"); test.Printf(_L("* and makes use of the *\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_DESCRIBEPRECONDITIONS_DUP04, "* and makes use of the *\n"); test.Printf(_L("* USB OPT test code *\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_DESCRIBEPRECONDITIONS_DUP05, "* USB OPT test code *\n"); test.Printf(_L("***************************\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_DESCRIBEPRECONDITIONS_DUP06, "***************************\n"); } // handle event completion void CTestCase0670::RunStepL() { - if(gVerboseOutput) - { - OstTraceFunctionEntry0(CTESTCASE0670_RUNSTEPL); - } + LOG_FUNC // Obtain the completion code for this CActive obj. TInt completionCode(iStatus.Int()); TBuf aDescription; @@ -178,14 +155,10 @@ case EConnectAtoB: // H4 width **************************** test.Printf(_L("\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP01, "\n"); test.Printf(_L("***********************\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP02, "***********************\n"); // WAIT_ON_KEYOP( "Connect H4(A) to OPT(B)\n"); test.Printf(_L("Connect H4(A) to OPT(B)\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP03, "Connect H4(Ato OPT(B)\n"); test.Printf(KPressAnyKeyToContinue); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP04, KPressAnyKeyToContinue); iCaseStep = EStartOptTD4_5; RequestCharacter(); @@ -194,15 +167,10 @@ case EStartOptTD4_5: // H4 width **************************** test.Printf(_L("On the OPT, select:\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP05, "On the OPT, select:\n"); test.Printf(_L(" Certified FS-A-UUT Test\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP06, " Certified FS-A-UUT Test\n"); test.Printf(_L(" Test TD.4.5-2.9ms-100ms\n")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP07, " Test TD.4.5-2.9ms-100ms\n"); test.Printf(_L(" And then Click 'Run' ")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP08, " And then Click 'Run' "); test.Printf(_L(" When test starts, press any key")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP09, " When test starts, press any key"); iCaseStep = EPromptYOpt4_5; RequestCharacter(); break; @@ -210,7 +178,6 @@ case EPromptYOpt4_5: iCaseStep = EConfirmOpt4_5; test.Printf(_L("Did it PASS (Y/N)?")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP10, "Did it PASS (Y/N?"); RequestCharacter(); // 30 seconds for user input iWDTimer->IssueRequest(KDelayDurationForTest4_5, this, &CancelKB); break; @@ -257,7 +224,6 @@ default: test.Printf(_L(" unknown test step")); - OstTrace0(TRACE_NORMAL, CTESTCASE0670_RUNSTEPL_DUP11, " unknown test step"); Cancel(); return (TestFailed(KErrCorrupt, _L(" unknown test step"))); }