]> granicus.if.org Git - python/commitdiff
Issue #5083: New 'gui' resource for regrtest.
authorGuilherme Polo <ggpolo@gmail.com>
Wed, 28 Jan 2009 20:03:26 +0000 (20:03 +0000)
committerGuilherme Polo <ggpolo@gmail.com>
Wed, 28 Jan 2009 20:03:26 +0000 (20:03 +0000)
Lib/test/regrtest.py
Misc/NEWS

index faa308c81fc84e63e90002e7e7f8a512c37b36e1..5c91dc3a772a1ee047960afb14dd9529e9d647ec 100755 (executable)
@@ -116,6 +116,8 @@ resources to test.  Currently only the following are defined:
 
     urlfetch -  It is okay to download files required on testing.
 
+    gui -       Run tests that require a running GUI.
+
 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'.
@@ -168,7 +170,7 @@ if sys.platform == 'darwin':
 from test import test_support
 
 RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb',
-                  'decimal', 'compiler', 'subprocess', 'urlfetch')
+                  'decimal', 'compiler', 'subprocess', 'urlfetch', 'gui')
 
 
 def usage(code, msg=''):
index 5866c4ade143c6f0fdd1c0ff0ccb39ae202e6644..f6ef272ab1b089be20af5799c3675f277ee1394b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -442,6 +442,11 @@ Extension Modules
 
 - Issue #4396: The parser module now correctly validates the with statement.
 
+Tests
+-----
+
+- Issue #5083: New 'gui' resource for regrtest.
+
 
 What's New in Python 2.6 final
 ==============================