[Python-checkins] r52259 - python/branches/release24-maint/Tools/buildbot/build.bat python/branches/release24-maint/Tools/buildbot/test.bat

tim.peters python-checkins at python.org
Tue Oct 10 01:18:44 CEST 2006


Author: tim.peters
Date: Tue Oct 10 01:18:44 2006
New Revision: 52259

Modified:
   python/branches/release24-maint/Tools/buildbot/build.bat
   python/branches/release24-maint/Tools/buildbot/test.bat
Log:
Move fetching of encoding test files from the end of the
Windows builbot's "build" step to the start of its "test"
step.

This is poke-and-hope.  The hope is that compilation failures
on Windows will become visible to the buildbot (bsddb has
apparently been failing to compile in 2.4 on Windows "for
some time" now, but the buildbots haven't noticed that).


Modified: python/branches/release24-maint/Tools/buildbot/build.bat
==============================================================================
--- python/branches/release24-maint/Tools/buildbot/build.bat	(original)
+++ python/branches/release24-maint/Tools/buildbot/build.bat	Tue Oct 10 01:18:44 2006
@@ -2,6 +2,4 @@
 cmd /c Tools\buildbot\external.bat
 call "%VS71COMNTOOLS%vsvars32.bat"
 cd PCbuild
-devenv.com /useenv /build Debug pcbuild.sln
- at rem Fetch encoding test files.  Note that python_d needs to be built first.
-if not exist BIG5.TXT python_d.exe ..\Tools\buildbot\fetch_data_files.py
\ No newline at end of file
+devenv.com /useenv /build Debug pcbuild.sln
\ No newline at end of file

Modified: python/branches/release24-maint/Tools/buildbot/test.bat
==============================================================================
--- python/branches/release24-maint/Tools/buildbot/test.bat	(original)
+++ python/branches/release24-maint/Tools/buildbot/test.bat	Tue Oct 10 01:18:44 2006
@@ -1,3 +1,5 @@
 @rem Used by the buildbot "test" step.
 cd PCbuild
+ at rem Fetch encoding test files.  Note that python_d needs to be built first.
+if not exist BIG5.TXT python_d.exe ..\Tools\buildbot\fetch_data_files.py
 call rt.bat -d -q -uall -rw


More information about the Python-checkins mailing list