summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-07-05 16:29:38 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-07-05 16:29:38 (GMT)
commit87988b675323ebca3b15c52bad0dbc6b5422c2b0 (patch)
tree4600efd600c31158e76e7470c64b216d740f5c1d /Lib/test/regrtest.py
parent5a9ef426a98f725600c54952f4f427f0f886b4a0 (diff)
downloadcpython-87988b675323ebca3b15c52bad0dbc6b5422c2b0.zip
cpython-87988b675323ebca3b15c52bad0dbc6b5422c2b0.tar.gz
cpython-87988b675323ebca3b15c52bad0dbc6b5422c2b0.tar.bz2
make regrtest aware of the lib2to3 resource
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 29c165b..73ab25b 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -91,6 +91,8 @@ resources to test. Currently only the following are defined:
curses - Tests that use curses and will modify the terminal's
state and output modes.
+ lib2to3 - Run the tests for 2to3 (They take a while.)
+
largefile - It is okay to run some test that may create huge
files. These tests can take a long time and may
consume >2GB of disk space temporarily.
@@ -165,7 +167,7 @@ if sys.platform == 'darwin':
from test import test_support
-RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb',
+RESOURCE_NAMES = ('audio', 'curses', 'lib2to3', 'largefile', 'network', 'bsddb',
'decimal', 'compiler', 'subprocess', 'urlfetch')