From 4211925453161712cf7c725ee4286dff81ddf518 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Sat, 3 Mar 2001 04:14:21 +0000 Subject: [PATCH] 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. --- Makefile.pre.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile.pre.in b/Makefile.pre.in index abf56561b87..8876d2fa117 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