diff -r 7d4490026038 -r 44f437012c90 persistentstorage/sql/TEST/t_sqlconfigfile.cpp --- a/persistentstorage/sql/TEST/t_sqlconfigfile.cpp Mon Sep 27 11:59:56 2010 +0100 +++ b/persistentstorage/sql/TEST/t_sqlconfigfile.cpp Tue Oct 19 16:26:13 2010 +0100 @@ -51,7 +51,6 @@ TInt KillProcess(const TDesC& aProcessName) { TFullName name; - //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName); TBuf<64> pattern(aProcessName); TInt length = pattern.Length(); pattern += _L("*"); @@ -68,7 +67,6 @@ { // If the found name is other valid application name // starting with aProcessName string. - //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name); continue; } } @@ -76,7 +74,6 @@ if (proc.Open(name) == KErrNone) { proc.Kill(0); - //RDebug::Print(_L("\"%S\" process killed.\n"), &name); } proc.Close(); } @@ -100,6 +97,7 @@ if(!aValue) { DestroyTestEnv(); + TheTest.Printf(_L("*** Expression evaluated to false\r\n")); TheTest(EFalse, aLine); } } @@ -108,7 +106,7 @@ if(aValue != aExpected) { DestroyTestEnv(); - RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); + TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); TheTest(EFalse, aLine); } }