Ejemplo n.º 1
0
 def teardown_job(self):
     # We must tear down the PerfTest before uninstalling
     # webappstartup, because we need the profile and minidumps
     # directory for crash processing.
     PerfTest.teardown_job(self)
     if self.webappstartup_name:
         try:
             # Make certain to catch any exceptions in order
             # to ensure that the test teardown completes.
             self.dm.uninstall_app(self.webappstartup_name)
         except:
             self.loggerdeco.exception('Exception uninstalling %s',
                                       self.webappstartup_name)
Ejemplo n.º 2
0
 def teardown_job(self):
     # We must tear down the PerfTest before uninstalling
     # webappstartup, because we need the profile and minidumps
     # directory for crash processing.
     PerfTest.teardown_job(self)
     if self.webappstartup_name:
         try:
             # Make certain to catch any exceptions in order
             # to ensure that the test teardown completes.
             self.dm.uninstall_app(self.webappstartup_name)
         except:
             self.loggerdeco.exception('Exception uninstalling %s' %
                                       self.webappstartup_name)
Ejemplo n.º 3
0
 def teardown_job(self):
     if self.webappstartup_name:
         self.dm.uninstall_app(self.webappstartup_name)
     PerfTest.teardown_job(self)