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:43:25 +00:00
parent 9a4acdf4a5
commit d989f820c8
5 changed files with 8 additions and 10 deletions

View file

@ -310,7 +310,7 @@ from math import *
def test_main():
global TEST_ALL
TEST_ALL = test.test_support.is_resource_enabled("compiler")
TEST_ALL = test.test_support.is_resource_enabled("cpu")
test.test_support.run_unittest(CompilerTest)
if __name__ == "__main__":