[Python-checkins] python/dist/src Makefile.pre.in,1.122,1.123

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Tue, 06 May 2003 09:17:30 -0700


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv20452

Modified Files:
	Makefile.pre.in 
Log Message:
add Guido's reasoning behind running all tests twice


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.122
retrieving revision 1.123
diff -C2 -d -r1.122 -r1.123
*** Makefile.pre.in	6 May 2003 15:30:20 -0000	1.122
--- Makefile.pre.in	6 May 2003 16:17:27 -0000	1.123
***************
*** 515,518 ****
--- 515,525 ----
  
  # Test the interpreter (twice, once without .pyc files, once with)
+ # In the past, we've had problems where bugs in the marshalling or
+ # elsewhere caused bytecode read from .pyc files to behave differently
+ # than bytecode generated directly from a .py source file.  Sometimes
+ # the bytecode read from a .pyc file had the bug, somtimes the directly
+ # generated bytecode.  This is sometimes a very shy bug needing a lot of
+ # sample data.
+ 
  TESTOPTS=	-l
  TESTPROG=	$(srcdir)/Lib/test/regrtest.py