[Python-checkins] cpython: rt.bat: use -m test instead of Lib\test\regrtest.py

victor.stinner python-checkins at python.org
Thu Mar 24 12:54:20 EDT 2016


https://hg.python.org/cpython/rev/4c0f94ec1c41
changeset:   100722:4c0f94ec1c41
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Mar 24 17:46:24 2016 +0100
summary:
  rt.bat: use -m test instead of Lib\test\regrtest.py

files:
  PCbuild/rt.bat |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat
--- a/PCbuild/rt.bat
+++ b/PCbuild/rt.bat
@@ -42,7 +42,7 @@
 if NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOpts
 
 set exe=%prefix%python%suffix%.exe
-set cmd="%exe%" %dashO% -Wd -E -bb "%pcbuild%..\lib\test\regrtest.py" %regrtestargs%
+set cmd="%exe%" %dashO% -Wd -E -bb -m test %regrtestargs%
 if defined qmode goto Qmode
 
 echo Deleting .pyc/.pyo files ...

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


More information about the Python-checkins mailing list