summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-11-19 17:47:07 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-11-19 17:47:07 (GMT)
commit1c6b1a2b4ea38955a3f0514f4709bafd0be96c5e (patch)
tree1d75385f12cdeda7369e5a2428d33649e6b70380 /Lib/test/regrtest.py
parenta406b58619e3fd8fb26ced18ac64b475a48648d2 (diff)
downloadcpython-1c6b1a2b4ea38955a3f0514f4709bafd0be96c5e.zip
cpython-1c6b1a2b4ea38955a3f0514f4709bafd0be96c5e.tar.gz
cpython-1c6b1a2b4ea38955a3f0514f4709bafd0be96c5e.tar.bz2
Importing test suite from bsddb3 3.4.0 (with modifications).
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 7393db1..652432c 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -55,6 +55,9 @@ resources to test. Currently only the following are defined:
network - It is okay to run tests that use external network
resource, e.g. testing SSL support for sockets.
+
+ bsddb - It is okay to run the bsddb testsuite, which takes
+ a long time to complete.
"""
import sys
@@ -78,7 +81,7 @@ if sys.maxint > 0x7fffffff:
from test import test_support
-RESOURCE_NAMES = ('curses', 'largefile', 'network')
+RESOURCE_NAMES = ('curses', 'largefile', 'network', 'bsddb')
def usage(code, msg=''):