Added a new variable TESTPYTHON which contains the path (and args) for

the executable to use during regression testing.
This commit is contained in:
Barry Warsaw 1997-08-29 21:52:14 +00:00
parent 45140f97a6
commit dd82bb9c14

View File

@ -200,10 +200,11 @@ Modules: Parser Python Objects
# Test the interpreter (twice, once without .pyc files, once with)
TESTOPTS=
TESTPROG= $(srcdir)/Lib/test/regrtest.py
TESTPYTHON= ./python
test: python
-rm -f $(srcdir)/Lib/test/*.pyc
-PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
-PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
# Install everything
install: altinstall bininstall maninstall