[Python-checkins] r86586 - in python/branches/release27-maint/Lib/test: test_cprofile.py test_profile.py

senthil.kumaran python-checkins at python.org
Sat Nov 20 18:23:00 CET 2010


Author: senthil.kumaran
Date: Sat Nov 20 18:23:00 2010
New Revision: 86586

Log:
Fix buildbot failures - removing the CPU term in the seconds from the output.


Modified:
   python/branches/release27-maint/Lib/test/test_cprofile.py
   python/branches/release27-maint/Lib/test/test_profile.py

Modified: python/branches/release27-maint/Lib/test/test_cprofile.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_cprofile.py	(original)
+++ python/branches/release27-maint/Lib/test/test_cprofile.py	Sat Nov 20 18:23:00 2010
@@ -39,7 +39,7 @@
 # Don't remove this comment. Everything below it is auto-generated.
 #--cut--------------------------------------------------------------------------
 CProfileTest.expected_output['print_stats'] = """\
-         126 function calls (106 primitive calls) in 1.000 CPU seconds
+         126 function calls (106 primitive calls) in 1.000 seconds
 
    Ordered by: standard name
 

Modified: python/branches/release27-maint/Lib/test/test_profile.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_profile.py	(original)
+++ python/branches/release27-maint/Lib/test/test_profile.py	Sat Nov 20 18:23:00 2010
@@ -93,7 +93,7 @@
 # Don't remove this comment. Everything below it is auto-generated.
 #--cut--------------------------------------------------------------------------
 ProfileTest.expected_output['print_stats'] = """\
-         127 function calls (107 primitive calls) in 999.749 CPU seconds
+         127 function calls (107 primitive calls) in 999.749 seconds
 
    Ordered by: standard name
 


More information about the Python-checkins mailing list