Changeset 65311 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Jan 16, 2017 10:01:38 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
r65116 r65311 197 197 def actionAbort(self): 198 198 """ 199 Forward this to the sub testdriver first, then do the default pid file200 based cleanup and finally swipe the scene with the heavy artillery.199 Forward this to the sub testdriver first, then wipe all VBox like 200 processes, and finally do the pid file processing (again). 201 201 """ 202 202 fRc1 = self._executeSubDriver([ 'abort', ], fMaySkip = False); 203 fRc2 = TestDriverBase.actionAbort(self);204 fRc3 = self._killAllVBoxProcesses();203 fRc2 = self._killAllVBoxProcesses(); 204 fRc3 = TestDriverBase.actionAbort(self); 205 205 return fRc1 and fRc2 and fRc3; 206 206
Note:
See TracChangeset
for help on using the changeset viewer.