summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-03-03 04:14:21 (GMT)
committerBarry Warsaw <barry@python.org>2001-03-03 04:14:21 (GMT)
commit4211925453161712cf7c725ee4286dff81ddf518 (patch)
tree8e2098cb42fa830ecb03ac26567f4a55eed5d334 /Makefile.pre.in
parent61af5605fa6ac2ebd130c43b856b1fc989dcfd53 (diff)
downloadcpython-4211925453161712cf7c725ee4286dff81ddf518.zip
cpython-4211925453161712cf7c725ee4286dff81ddf518.tar.gz
cpython-4211925453161712cf7c725ee4286dff81ddf518.tar.bz2
Added `memtest' target which excludes the quicktest modules plus
test_dl, test___all__, test_fork1, and test_longexp. All these either take way too long with Insure or crash it.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index abf5656..8876d2f 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -473,6 +473,13 @@ quicktest: all platform
-PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
+MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
+ test_longexp
+memtest: all platform
+ -rm -f $(srcdir)/Lib/test/*.py[co]
+ -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
+ PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
+
# Install everything
install: altinstall bininstall maninstall