def actionAbort(self):
     """
     Forward this to the sub testdriver first, then do the default pid file
     based cleanup and finally swipe the scene with the heavy artillery.
     """
     fRc1 = self._executeSubDriver([ 'abort', ]);
     fRc2 = TestDriverBase.actionAbort(self);
     fRc3 = self._killAllVBoxProcesses();
     return fRc1 and fRc2 and fRc3;
 def actionAbort(self):
     """
     Forward this to the sub testdriver first, then wipe all VBox like
     processes, and finally do the pid file processing (again).
     """
     fRc1 = self._executeSubDriver([ 'abort', ], fMaySkip = False);
     fRc2 = self._killAllVBoxProcesses();
     fRc3 = TestDriverBase.actionAbort(self);
     return fRc1 and fRc2 and fRc3;
 def actionAbort(self):
     """
     Forward this to the sub testdriver first, then wipe all VBox like
     processes, and finally do the pid file processing (again).
     """
     fRc1 = self._executeSubDriver([ 'abort', ], fMaySkip = False);
     fRc2 = self._killAllVBoxProcesses();
     fRc3 = TestDriverBase.actionAbort(self);
     return fRc1 and fRc2 and fRc3;
Exemple #4
0
 def actionAbort(self):
     """
     Forward this to the sub testdriver first, then do the default pid file
     based cleanup and finally swipe the scene with the heavy artillery.
     """
     fRc1 = self._executeSubDriver([
         'abort',
     ], fMaySkip=False)
     fRc2 = TestDriverBase.actionAbort(self)
     fRc3 = self._killAllVBoxProcesses()
     return fRc1 and fRc2 and fRc3