From: Barry Warsaw Date: Sat, 3 Mar 2001 04:14:21 +0000 (+0000) Subject: Added `memtest' target which excludes the quicktest modules plus X-Git-Tag: v2.1b2~240 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4211925453161712cf7c725ee4286dff81ddf518;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index abf56561b870..8876d2fa1172 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