Switched over to use the new testregr.py test harness.

This commit is contained in:
Barry Warsaw 1997-01-02 20:01:44 +00:00
parent 6717030dc9
commit 9121ab9433
1 changed files with 4 additions and 2 deletions

View File

@ -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