From 99887e143038b0d0ebd249e9379d165bf6c1806e Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 9 Oct 2006 23:18:44 +0000 Subject: [PATCH] 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). --- Tools/buildbot/build.bat | 4 +--- Tools/buildbot/test.bat | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index ef9b09298310..d834e0bde91c 100644 --- a/Tools/buildbot/build.bat +++ b/Tools/buildbot/build.bat @@ -2,6 +2,4 @@ cmd /c Tools\buildbot\external.bat call "%VS71COMNTOOLS%vsvars32.bat" cd PCbuild -devenv.com /useenv /build Debug pcbuild.sln -@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 diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat index c8b1937ca4e5..aa4f53b42047 100644 --- a/Tools/buildbot/test.bat +++ b/Tools/buildbot/test.bat @@ -1,3 +1,5 @@ @rem Used by the buildbot "test" step. cd PCbuild +@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 -- 2.47.3