[Python-checkins] cpython (merge 3.5 -> default): Merge with 3.5

zach.ware python-checkins at python.org
Wed Jun 10 08:17:58 CEST 2015


https://hg.python.org/cpython/rev/5051533e1a16
changeset:   96574:5051533e1a16
parent:      96570:1cdedc9a9e9f
parent:      96573:e6a95bda2943
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Wed Jun 10 00:44:40 2015 -0500
summary:
  Merge with 3.5

files:
  PCbuild/build.bat              |   9 +++++++++
  Tools/buildbot/build.bat       |   7 ++-----
  Tools/buildbot/clean-amd64.bat |   2 +-
  Tools/buildbot/clean.bat       |  19 +++----------------
  Tools/buildbot/test-amd64.bat  |   5 +----
  Tools/buildbot/test.bat        |  14 ++++++++++++--
  6 files changed, 28 insertions(+), 28 deletions(-)


diff --git a/PCbuild/build.bat b/PCbuild/build.bat
--- a/PCbuild/build.bat
+++ b/PCbuild/build.bat
@@ -9,8 +9,10 @@
 rem  -t  Set the target manually (Build, Rebuild, Clean, or CleanAll)
 rem  -d  Set the configuration to Debug
 rem  -e  Pull in external libraries using get_externals.bat
+rem  -m  Enable parallel build (enabled by default)
 rem  -M  Disable parallel build
 rem  -v  Increased output messages
+rem  -k  Attempt to kill any running Pythons before building (usually unnecessary)
 
 setlocal
 set platf=Win32
@@ -20,6 +22,7 @@
 set dir=%~dp0
 set parallel=/m
 set verbose=/nologo /v:m
+set kill=
 
 :CheckOpts
 if '%1'=='-c' (set conf=%2) & shift & shift & goto CheckOpts
@@ -28,14 +31,20 @@
 if '%1'=='-t' (set target=%2) & shift & shift & goto CheckOpts
 if '%1'=='-d' (set conf=Debug) & shift & goto CheckOpts
 if '%1'=='-e' call "%dir%get_externals.bat" & shift & goto CheckOpts
+if '%1'=='-m' (set parallel=/m) & shift & goto CheckOpts
 if '%1'=='-M' (set parallel=) & shift & goto CheckOpts
 if '%1'=='-v' (set verbose=/v:n) & shift & goto CheckOpts
+if '%1'=='-k' (set kill=true) & shift & goto CheckOpts
 
 if '%platf%'=='x64' (set vs_platf=x86_amd64)
 
 rem Setup the environment
 call "%dir%env.bat" %vs_platf% >nul
 
+if '%kill%'=='true' (
+    msbuild /v:m /nologo /target:KillPython "%pcbuild%\pythoncore.vcxproj" /p:Configuration=%conf% /p:Platform=%platf% /p:KillPython=true
+)
+
 rem Call on MSBuild to do the work, echo the command.
 rem Passing %1-9 is not the preferred option, but argument parsing in
 rem batch is, shall we say, "lackluster"
diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat
--- a/Tools/buildbot/build.bat
+++ b/Tools/buildbot/build.bat
@@ -1,10 +1,7 @@
 @rem Used by the buildbot "compile" step.
 
 @rem Clean up
-set PLAT=
-if '%1' EQU '-p' if '%2' EQU 'x64' (set PLAT=-amd64)
-
-call "%~dp0clean%PLAT%.bat"
+call "%~dp0clean.bat" %*
 
 @rem If you need the buildbots to start fresh (such as when upgrading to
 @rem a new version of an external library, especially Tcl/Tk):
@@ -17,4 +14,4 @@
 @rem 4) re-comment, commit and push again
 
 @rem Do the build
-call "%~dp0..\..\PCbuild\build.bat" -e -d -v %*
+call "%~dp0..\..\PCbuild\build.bat" -e -d -k -v %*
diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat
--- a/Tools/buildbot/clean-amd64.bat
+++ b/Tools/buildbot/clean-amd64.bat
@@ -1,2 +1,2 @@
 @rem Used by the buildbot "clean" step.
- at call "%~dp0clean.bat" x64
+call "%~dp0clean.bat" -p x64 %*
diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat
--- a/Tools/buildbot/clean.bat
+++ b/Tools/buildbot/clean.bat
@@ -5,25 +5,12 @@
 set root=%~dp0..\..
 set pcbuild=%root%\PCbuild
 
-if "%1" == "x64" (
-    set vcvars_target=x86_amd64
-    set platform=x64
-) else (
-    set vcvars_target=x86
-    set platform=Win32
-)
-
-call "%pcbuild%\env.bat" %vcvars_target%
-
-echo.Attempting to kill Pythons...
-msbuild /v:m /nologo /target:KillPython "%pcbuild%\pythoncore.vcxproj" /p:Configuration=Release /p:Platform=%platform% /p:KillPython=true
+echo Deleting build
+call "%pcbuild%\build.bat" -t Clean -k %*
+call "%pcbuild%\build.bat" -t Clean -k -d %*
 
 echo Deleting .pyc/.pyo files ...
 del /s "%root%\Lib\*.pyc" "%root%\Lib\*.pyo"
 
 echo Deleting test leftovers ...
 rmdir /s /q "%root%\build"
-
-echo Deleting build
-msbuild /v:m /nologo /target:clean "%pcbuild%\pcbuild.proj" /p:Configuration=Release /p:Platform=%platform%
-msbuild /v:m /nologo /target:clean "%pcbuild%\pcbuild.proj" /p:Configuration=Debug /p:Platform=%platform%
diff --git a/Tools/buildbot/test-amd64.bat b/Tools/buildbot/test-amd64.bat
--- a/Tools/buildbot/test-amd64.bat
+++ b/Tools/buildbot/test-amd64.bat
@@ -1,5 +1,2 @@
 @rem Used by the buildbot "test" step.
-
-setlocal
-
-call "%~dp0..\..\PCbuild\rt.bat" -d -q -x64 -uall -rwW -n --timeout=3600 %*
+call "%~dp0test.bat" -x64 %*
diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat
--- a/Tools/buildbot/test.bat
+++ b/Tools/buildbot/test.bat
@@ -1,5 +1,15 @@
 @rem Used by the buildbot "test" step.
+ at setlocal
 
-setlocal
+ at set here=%~dp0
+ at set rt_opts=-q -d
 
-call "%~dp0..\..\PCbuild\rt.bat" -d -q -uall -rwW -n --timeout=3600 %*
+:CheckOpts
+ at if '%1'=='-x64' (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
+ at if '%1'=='-d' (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
+ at if '%1'=='-O' (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
+ at if '%1'=='-q' (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
+ at if '%1'=='+d' (set rt_opts=%rt_opts:-d=%) & shift & goto CheckOpts
+ at if '%1'=='+q' (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts
+
+call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW -n --timeout=3600 %1 %2 %3 %4 %5 %6 %7 %8 %9

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list