summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1997-01-02 20:01:44 (GMT)
committerBarry Warsaw <barry@python.org>1997-01-02 20:01:44 (GMT)
commit9121ab94332ec38ac24f88b468b6ca54b1845cd8 (patch)
tree05ce530a0d3c0402f6eb21a86114596e8b01ee35 /Makefile.in
parent6717030dc939bcff9578ca8144f0963f54022dba (diff)
downloadcpython-9121ab94332ec38ac24f88b468b6ca54b1845cd8.zip
cpython-9121ab94332ec38ac24f88b468b6ca54b1845cd8.tar.gz
cpython-9121ab94332ec38ac24f88b468b6ca54b1845cd8.tar.bz2
Switched over to use the new testregr.py test harness.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 8e75a10..2c92655 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