From: Martin v. Löwis Date: Mon, 17 Apr 2006 10:31:35 +0000 (+0000) Subject: Rename binary again; increase noise; stop trying to actually kill the process. X-Git-Tag: v2.5a2~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63d1f99d7ab3690541c827fd813e015a38102781;p=python Rename binary again; increase noise; stop trying to actually kill the process. --- diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index e96323c5b9..3ab548e7d1 100644 --- a/Tools/buildbot/build.bat +++ b/Tools/buildbot/build.bat @@ -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 diff --git a/Tools/buildbot/kill_python.bat b/Tools/buildbot/kill_python.bat index 8688fd88e7..e068cc7913 100644 --- a/Tools/buildbot/kill_python.bat +++ b/Tools/buildbot/kill_python.bat @@ -1,3 +1,3 @@ cd Tools\buildbot nmake /f kill_python.mak -kill_python3.exe +kill_python4.exe diff --git a/Tools/buildbot/kill_python.c b/Tools/buildbot/kill_python.c index f84df1d5a3..66d6f7f235 100644 --- a/Tools/buildbot/kill_python.c +++ b/Tools/buildbot/kill_python.c @@ -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); } diff --git a/Tools/buildbot/kill_python.mak b/Tools/buildbot/kill_python.mak index ce31d18af4..f8be443ecb 100644 --- a/Tools/buildbot/kill_python.mak +++ b/Tools/buildbot/kill_python.mak @@ -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