Rename binary again; increase noise; stop trying to actually kill the process.

This commit is contained in:
Martin v. Löwis 2006-04-17 10:31:35 +00:00
parent 11e8b3c29b
commit 63d1f99d7a
4 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,5 @@
@rem Used by the buildbot "compile" step.
cmd /c Tools\buildbot\external.bat
call "%VS71COMNTOOLS%vsvars32.bat"
cmd /q/c Tools\buildbot\kill_python.bat
cmd /c Tools\buildbot\kill_python.bat
devenv.com /useenv /build Debug PCbuild\pcbuild.sln

View File

@ -1,3 +1,3 @@
cd Tools\buildbot
nmake /f kill_python.mak
kill_python3.exe
kill_python4.exe

View File

@ -44,6 +44,7 @@ int main()
_strlwr(path);
printf("%s\n", path);
fflush(stdout);
/*
if (strstr(path, "build\\pcbuild\\python_d.exe") != NULL) {
printf("Terminating %s (pid %d)\n", path, pids[i]);
if (!TerminateProcess(hProcess, 1)) {
@ -52,6 +53,7 @@ int main()
}
return 0;
}
*/
CloseHandle(hProcess);
}

View File

@ -1,2 +1,2 @@
kill_python.exe: kill_python.c
cl -nologo -o kill_python3.exe kill_python.c psapi.lib
cl -nologo -o kill_python4.exe kill_python.c psapi.lib