[Python-checkins] r85884 - python/branches/issue10209/Lib/test/regrtest.py

victor.stinner python-checkins at python.org
Thu Oct 28 13:31:59 CEST 2010


Author: victor.stinner
Date: Thu Oct 28 13:31:59 2010
New Revision: 85884

Log:
regrtest: only run interesting tests


Modified:
   python/branches/issue10209/Lib/test/regrtest.py

Modified: python/branches/issue10209/Lib/test/regrtest.py
==============================================================================
--- python/branches/issue10209/Lib/test/regrtest.py	(original)
+++ python/branches/issue10209/Lib/test/regrtest.py	Thu Oct 28 13:31:59 2010
@@ -251,6 +251,8 @@
     on the command line.
     """
 
+    tests = ['test_os', 'test_sys', 'test_pep277', 'test_unicode', 'test_unicode_file', 'test_unicodedata']
+
     replace_stdout()
 
     support.record_original_stdout(sys.stdout)


More information about the Python-checkins mailing list