sl@0: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: //This function is used in the test code to kill ECOMSERVER sl@0: //processes (or some other) when they leftover and may problem in ECOMSERVERTEST sl@0: static TInt KillProcess(const TDesC& aProcessName) sl@0: { sl@0: TFullName name; sl@0: sl@0: RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName); sl@0: sl@0: TBuf<64> pattern(aProcessName); sl@0: TInt length = pattern.Length(); sl@0: pattern += _L("*"); sl@0: TFindProcess procFinder(pattern); sl@0: sl@0: while(procFinder.Next(name) == KErrNone) sl@0: { sl@0: if(name.Length() > length) sl@0: { sl@0: //If found name is a string containing aProcessName string. sl@0: TChar c(name[length]); sl@0: if(c.IsAlphaDigit() || c == TChar('_') || c == TChar('-')) sl@0: { sl@0: //If the found name is other valid application name starting with aProcessName string. sl@0: RDebug::Print(_L(":: Process name: \"%S\".\n"), &name); sl@0: continue; sl@0: } sl@0: } sl@0: RProcess proc; sl@0: if(proc.Open(name) == KErrNone) sl@0: { sl@0: proc.Kill(0); sl@0: RDebug::Print(_L("\"%S\" process killed.\n"), &name); sl@0: } sl@0: proc.Close(); sl@0: } sl@0: return KErrNone; sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: TFileName name; sl@0: User::CommandLine(name); sl@0: return KillProcess(name); sl@0: } sl@0: