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 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 @@
_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 @@
}
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