]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
make regrtest aware of the lib2to3 resource
authorBenjamin Peterson <benjamin@python.org>
Sat, 5 Jul 2008 16:29:38 +0000 (16:29 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 5 Jul 2008 16:29:38 +0000 (16:29 +0000)
Lib/test/regrtest.py

index 29c165b121647dbf6e4eb8b522ca60176ad9f84f..73ab25be8982b30ec3cf707ed93ef0e716b51b0f 100755 (executable)
@@ -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')