From 63d1f99d7ab3690541c827fd813e015a38102781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 17 Apr 2006 10:31:35 +0000 Subject: Rename binary again; increase noise; stop trying to actually kill the process. --- Tools/buildbot/build.bat | 2 +- Tools/buildbot/kill_python.bat | 2 +- Tools/buildbot/kill_python.c | 2 ++ Tools/buildbot/kill_python.mak | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index e96323c..3ab548e 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 8688fd8..e068cc7 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 f84df1d..66d6f7f 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 ce31d18..f8be443 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 -- cgit v0.12