]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added `memtest' target which excludes the quicktest modules plus
authorBarry Warsaw <barry@python.org>
Sat, 3 Mar 2001 04:14:21 +0000 (04:14 +0000)
committerBarry Warsaw <barry@python.org>
Sat, 3 Mar 2001 04:14:21 +0000 (04:14 +0000)
test_dl, test___all__, test_fork1, and test_longexp.  All these either
take way too long with Insure or crash it.

Makefile.pre.in

index abf56561b870c3af533c49ae7cd8487b72bc6d0d..8876d2fa1172daac9c4d0b4cd9224605d3c2da9a 100644 (file)
@@ -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