コード例 #1
0
ファイル: webappstartup.py プロジェクト: Conjuror/autophone
 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)
コード例 #2
0
ファイル: webappstartup.py プロジェクト: wlach/autophone
 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)
コード例 #3
0
ファイル: webappstartup.py プロジェクト: markrcote/autophone
 def teardown_job(self):
     if self.webappstartup_name:
         self.dm.uninstall_app(self.webappstartup_name)
     PerfTest.teardown_job(self)