[Python-checkins] r64742 - python/trunk/Lib/test/regrtest.py

benjamin.peterson python-checkins at python.org
Sat Jul 5 18:29:38 CEST 2008


Author: benjamin.peterson
Date: Sat Jul  5 18:29:38 2008
New Revision: 64742

Log:
make regrtest aware of the lib2to3 resource

Modified:
   python/trunk/Lib/test/regrtest.py

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Sat Jul  5 18:29:38 2008
@@ -91,6 +91,8 @@
     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 @@
 
 from test import test_support
 
-RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb',
+RESOURCE_NAMES = ('audio', 'curses', 'lib2to3', 'largefile', 'network', 'bsddb',
                   'decimal', 'compiler', 'subprocess', 'urlfetch')
 
 


More information about the Python-checkins mailing list