[Python-checkins] CVS: python/dist/src Makefile.pre.in,1.8,1.9

Jeremy Hylton jhylton@users.sourceforge.net
Thu, 01 Feb 2001 11:51:31 -0800


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

Modified Files:
	Makefile.pre.in 
Log Message:
add quicktest target -- runs test suite except for the eight slowest tests


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** Makefile.pre.in	2001/01/29 20:18:59	1.8
--- Makefile.pre.in	2001/02/01 19:51:28	1.9
***************
*** 473,476 ****
--- 473,483 ----
  		PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
  
+ QUICKTESTOPTS=	$(TESTOPTS) -x test_thread test_signal test_strftime \
+ 		test_unicodedata test_re test_sre test_select test_poll
+ quicktest:	all platform
+ 		-rm -f $(srcdir)/Lib/test/*.py[co]
+ 		-PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
+ 		PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
+ 
  # Install everything
  install:	altinstall bininstall maninstall