summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot/clean.bat
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-26 20:15:47 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-26 20:15:47 (GMT)
commit9eea9d39c1bf0d01ef5ee00cc0c1bedde9c635a7 (patch)
tree226b125febdc5329224ada436b683cd67aedbb04 /Tools/buildbot/clean.bat
parentc13d454e84aabe80fbc7763491bdfb3c924016fe (diff)
downloadcpython-9eea9d39c1bf0d01ef5ee00cc0c1bedde9c635a7.zip
cpython-9eea9d39c1bf0d01ef5ee00cc0c1bedde9c635a7.tar.gz
cpython-9eea9d39c1bf0d01ef5ee00cc0c1bedde9c635a7.tar.bz2
In the Windows clean script for buildbots, also clear the build dir
(so that stale test files, which can be very large, get wiped out)
Diffstat (limited to 'Tools/buildbot/clean.bat')
-rw-r--r--Tools/buildbot/clean.bat3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat
index ec71804..5c8f33e 100644
--- a/Tools/buildbot/clean.bat
+++ b/Tools/buildbot/clean.bat
@@ -2,6 +2,9 @@
call "%VS90COMNTOOLS%vsvars32.bat"
@echo Deleting .pyc/.pyo files ...
del /s Lib\*.pyc Lib\*.pyo
+@echo Deleting test leftovers ...
+rmdir /s /q build
cd PCbuild
vcbuild /clean pcbuild.sln "Release|Win32"
vcbuild /clean pcbuild.sln "Debug|Win32"
+cd ..