Merged revisions 85482 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85482 | antoine.pitrou | 2010-10-14 17:34:31 +0200 (jeu., 14 oct. 2010) | 4 lines

  Replace the "compiler" resource with the more generic "cpu", so
  as to mark CPU-heavy tests.
........
This commit is contained in:
Antoine Pitrou 2010-10-14 15:41:23 +00:00
parent c8ef6436d8
commit 2731494720
4 changed files with 7 additions and 6 deletions

View file

@ -115,8 +115,7 @@ resources to test. Currently only the following are defined:
decimal - Test the decimal module against a large suite that
verifies compliance with standards.
compiler - Allow test_tokenize to verify round-trip lexing on
every file in the test library.
cpu - Used for certain CPU-heavy tests.
subprocess Run all tests for the subprocess module.
@ -178,7 +177,7 @@ if sys.platform == 'darwin':
from test import support
RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network',
'decimal', 'compiler', 'subprocess', 'urlfetch', 'gui')
'decimal', 'cpu', 'subprocess', 'urlfetch', 'gui')
def usage(msg):