diff -r 28839de615b4 -r 26645d81f48d traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-serial/uloggerserialplugintest.cpp --- a/traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-serial/uloggerserialplugintest.cpp Thu Aug 19 11:36:21 2010 +0300 +++ b/traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-serial/uloggerserialplugintest.cpp Tue Aug 31 16:57:14 2010 +0300 @@ -47,7 +47,7 @@ * Description: Retrieve and print some data from an external ini data file * */ -void CSerial0Step::TestUnlockResources() +void CSerial0Step::TestUnlockResourcesL() { Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL(); INFO_PRINTF1(_L("Invoking CSerialWriter::CloseOutputPlugin(). CloseOutputPlugin() is supposed to do nothing.")); @@ -66,7 +66,7 @@ * Description: Retrieve and print some data from an external ini data file * */ -void CSerial0Step::TestSettings() +void CSerial0Step::TestSettingsL() { Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL(); INFO_PRINTF1(_L("Passing empty RPointerArray to CSerialWriter::ConfigureOutputPlugin()")); @@ -92,7 +92,7 @@ * */ // The implementation for this is not working correctly! Check this -void CSerial0Step::TestWrite() +void CSerial0Step::TestWriteL() { INFO_PRINTF1(_L("Checking that CSerialWriter::Write(const TDesC8&) writes a string correctly to the serial port")); @@ -148,9 +148,9 @@ if (TestStepResult()==EPass) { TestNewL(); - TestUnlockResources(); - TestSettings(); - TestWrite(); + TestUnlockResourcesL(); + TestSettingsL(); + TestWriteL(); if(iErrors == 0) SetTestStepResult(EPass);