=== modified file 'contrib/USC-start-stop-times.py'
--- contrib/USC-start-stop-times.py	2012-04-11 16:59:40 +0000
+++ contrib/USC-start-stop-times.py	2012-05-14 10:58:18 +0000
@@ -13,14 +13,14 @@
         ldtp.launchapp('./software-center')
         assert ldtp.waittillguiexist('frmUbuntuSoftwareCent*')
         self.msgs = []
-        a = "Time taken for the frame to open is " + str(
-            time.time() - start_time)
+        a = "Time taken for the frame to open is: " + str(
+            time.time() - start_time) + " Cpu percentage: " + str(ldtp.getcpustat('software-center')) + " Memory usage in MB: " + str(ldtp.getmemorystat('software-center'))
         self.msgs.append(a)
 
     def tearDown(self):
         ldtp.selectmenuitem('frmUbuntuSoftwareCent*', 'mnuClose')
         assert ldtp.waittillguinotexist('frmUbuntuSoftwareCent*')
-        c = "This test took a total of " + str(time.time() - start_time)
+        c = "This test took a total of " + str(time.time() - start_time) + " Cpu percentage: " + str(ldtp.getcpustat('software-center')) + " Memory usage in MB: " + str(ldtp.getmemorystat('software-center'))
         self.msgs.append(c)
         print '\n'.join(self.msgs)
 
@@ -28,7 +28,7 @@
         ldtp.waittillguiexist('frmUbuntuSoftwareCent*', 'btnAccessories')
         assert ldtp.objectexist('frmUbuntuSoftwareCent*', 'btnAccessories')
         b = "Time taken from start to find the Accessories button " + str(
-            time.time() - start_time)
+            time.time() - start_time) + " Cpu percentage: " + str(ldtp.getcpustat('software-center')) + " Memory usage in MB: " + str(ldtp.getmemorystat('software-center'))
         self.msgs.append(b)
 
 

