summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-04-17 10:31:35 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-04-17 10:31:35 (GMT)
commit63d1f99d7ab3690541c827fd813e015a38102781 (patch)
tree2d3bc6945ba6ef53482b34ab58703884e8d55a7a /Tools/buildbot
parent11e8b3c29b580f165d972954770f9b5b065babd6 (diff)
downloadcpython-63d1f99d7ab3690541c827fd813e015a38102781.zip
cpython-63d1f99d7ab3690541c827fd813e015a38102781.tar.gz
cpython-63d1f99d7ab3690541c827fd813e015a38102781.tar.bz2
Rename binary again; increase noise; stop trying to actually kill the process.
Diffstat (limited to 'Tools/buildbot')
-rw-r--r--Tools/buildbot/build.bat2
-rw-r--r--Tools/buildbot/kill_python.bat2
-rw-r--r--Tools/buildbot/kill_python.c2
-rw-r--r--Tools/buildbot/kill_python.mak2
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