[Python-checkins] r79600 - in python/branches/py3k: Makefile.pre.in PCbuild/rt.bat

ezio.melotti python-checkins at python.org
Fri Apr 2 15:56:40 CEST 2010


Author: ezio.melotti
Date: Fri Apr  2 15:56:40 2010
New Revision: 79600

Log:
Merged revisions 79540-79541 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

Add -Wd to the flags used to run the tests (-3 is not necessary here).

........
  r79540 | ezio.melotti | 2010-04-01 01:18:09 +0300 (Thu, 01 Apr 2010) | 1 line
  
  Add -Wd and -3 to the flags used to run the tests.
........
  r79541 | ezio.melotti | 2010-04-01 01:43:31 +0300 (Thu, 01 Apr 2010) | 1 line
  
  Add -Wd and -3 to the flags used to run the tests on Windows.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Makefile.pre.in
   python/branches/py3k/PCbuild/rt.bat

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Fri Apr  2 15:56:40 2010
@@ -706,7 +706,7 @@
 
 TESTOPTS=	-l $(EXTRATESTOPTS)
 TESTPROG=	$(srcdir)/Lib/test/regrtest.py
-TESTPYTHON=	$(RUNSHARED) ./$(BUILDPYTHON) -E -bb
+TESTPYTHON=	$(RUNSHARED) ./$(BUILDPYTHON) -Wd -E -bb
 test:		all platform
 		-find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
 		-$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)

Modified: python/branches/py3k/PCbuild/rt.bat
==============================================================================
--- python/branches/py3k/PCbuild/rt.bat	(original)
+++ python/branches/py3k/PCbuild/rt.bat	Fri Apr  2 15:56:40 2010
@@ -40,7 +40,7 @@
 
 PATH %PATH%;..\..\%tcltk%\bin
 set exe=%prefix%\python%suffix%
-set cmd=%exe% %dashO% -E ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
+set cmd=%exe% %dashO% -Wd -E ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
 if defined qmode goto Qmode
 
 echo Deleting .pyc/.pyo files ...


More information about the Python-checkins mailing list