From: Barry Warsaw Date: Thu, 2 Jan 1997 20:01:44 +0000 (+0000) Subject: Switched over to use the new testregr.py test harness. X-Git-Tag: v1.5a1~621 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9121ab94332ec38ac24f88b468b6ca54b1845cd8;p=thirdparty%2FPython%2Fcpython.git Switched over to use the new testregr.py test harness. --- diff --git a/Makefile.in b/Makefile.in index 8e75a102ea69..2c9265579155 100644 --- a/Makefile.in +++ b/Makefile.in @@ -157,10 +157,12 @@ python: Makefiles # Test the interpreter (twice, once without .pyc files, once with) TESTPATH= $(srcdir)/Lib:$(srcdir)/Lib/test:./Modules +TESTOPTS= +TESTPROG= Lib/test/regrtest.py test: python -rm -f $(srcdir)/Lib/test/*.pyc - PYTHONPATH=$(TESTPATH) ./python -c 'import autotest' - PYTHONPATH=$(TESTPATH) ./python -c 'import autotest' + PYTHONPATH=$(TESTPATH) ./python $(TESTPROG) $(TESTOPTS) + PYTHONPATH=$(TESTPATH) ./python $(TESTPROG) $(TESTOPTS) # Install everything install: altinstall bininstall maninstall