kill the process launched by wxExecute(ASYNC) to avoid leaving unneeded processes running

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52663 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-03-21 23:55:03 +00:00
parent 331abcf7d7
commit 42c46d5283

View File

@@ -565,8 +565,13 @@ static void TestExecute()
wxPrintf(_T("Testing async wxExecute: "));
fflush(stdout);
if ( wxExecute(ASYNC_COMMAND) != 0 )
int pid = wxExecute(ASYNC_COMMAND);
if ( pid != 0 )
{
wxPuts(_T("Ok (command launched)."));
if ( wxKill(pid) == -1 )
wxPuts("ERROR: failed to kill child process.");
}
else
wxPuts(_T("ERROR."));