summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorPeter Astrand <astrand@lysator.liu.se>2005-03-03 20:47:37 (GMT)
committerPeter Astrand <astrand@lysator.liu.se>2005-03-03 20:47:37 (GMT)
commitf7f1bb7ff5039626c856efafb68a4d338ab96642 (patch)
treeae29d54bdddb9a00d5193ee3ae703d0992af1eff /Lib/test/regrtest.py
parent23109f0009b34af04350417b17efc8190879ea78 (diff)
downloadcpython-f7f1bb7ff5039626c856efafb68a4d338ab96642.zip
cpython-f7f1bb7ff5039626c856efafb68a4d338ab96642.tar.gz
cpython-f7f1bb7ff5039626c856efafb68a4d338ab96642.tar.bz2
Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 4835e64..20407f8 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -93,6 +93,8 @@ resources to test. Currently only the following are defined:
in the standard library and test suite. This takes
a long time.
+ subprocess Run all tests for the subprocess module.
+
To enable all resources except one, use '-uall,-<resource>'. For
example, to run all the tests except for the bsddb tests, give the
option '-uall,-bsddb'.
@@ -136,7 +138,7 @@ if sys.platform == 'darwin':
from test import test_support
RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb',
- 'decimal', 'compiler')
+ 'decimal', 'compiler', 'subprocess')
def usage(code, msg=''):