[Python-checkins] CVS: python/dist/src/Lib/test regrtest.py,1.30,1.31

Barry Warsaw bwarsaw@users.sourceforge.net
Fri, 23 Feb 2001 10:31:43 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv5806

Modified Files:
	regrtest.py 
Log Message:
Describe -s a little more generically.


Index: regrtest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/regrtest.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -r1.30 -r1.31
*** regrtest.py	2001/02/09 11:40:40	1.30
--- regrtest.py	2001/02/23 18:31:40	1.31
***************
*** 24,32 ****
  -v is incompatible with -g and does not compare test output files.
  
! -s means to run only a single test and exit.  This is useful when Purifying
! the Python interpreter.  The file /tmp/pynexttest is read to find the next
! test to run.  If this file is missing, the first test_*.py file in testdir or
! on the command line is used.  (actually tempfile.gettempdir() is used instead
! of /tmp).
  
  """
--- 24,33 ----
  -v is incompatible with -g and does not compare test output files.
  
! -s means to run only a single test and exit.  This is useful when doing memory
! analysis on the Python interpreter (which tend to consume to many resources to
! run the full regression test non-stop).  The file /tmp/pynexttest is read to
! find the next test to run.  If this file is missing, the first test_*.py file
! in testdir or on the command line is used.  (actually tempfile.gettempdir() is
! used instead of /tmp).
  
  """