Changeset 86507 in vbox for trunk/src/VBox
- Timestamp:
- Oct 9, 2020 4:15:27 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r86503 r86507 1317 1317 else: 1318 1318 reporter.log('VBoxSVC is no longer running...'); 1319 1319 1320 if not self.oVBoxSvcProcess.isRunning(): 1320 1321 iExit = self.oVBoxSvcProcess.getExitCode(); … … 1930 1931 end of the job. 1931 1932 """ 1933 cErrorEntry = reporter.getErrorCount(); 1932 1934 1933 1935 # Kill any left over VM processes. … … 1964 1966 1965 1967 # Finally, call the base driver to wipe the scratch space. 1966 return base.TestDriver.actionCleanupAfter(self); 1968 fRc = base.TestDriver.actionCleanupAfter(self); 1969 1970 # Flag failure if the error count increased. 1971 if reporter.getErrorCount() > cErrorEntry: 1972 fRc = False; 1973 return fRc; 1974 1967 1975 1968 1976 def actionAbort(self):
Note:
See TracChangeset
for help on using the changeset viewer.