Changeset 61931 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Jun 29, 2016 1:04:00 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108370
- Location:
- trunk/src/VBox/ValidationKit/testdriver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r61828 r61931 754 754 def onMachineStateChange(self, sMachineId, eState): # pylint: disable=W0613 755 755 """ Just interrupt the wait loop here so it can check again. """ 756 _ = sMachineId; _ = eState; 757 self.oVBoxMgr.interruptWaitEvents(); 758 759 def onRuntimeError(self, fFatal, sErrId, sMessage): 760 reporter.log('onRuntimeError/%s: fFatal=%d sErrId=%s sMessage=%s' % (self.sName, fFatal, sErrId, sMessage)); 761 oSession = self.oSession; 762 if oSession is not None: # paranoia 763 oSession.signalTask(); 756 764 self.oVBoxMgr.interruptWaitEvents(); 757 765 -
trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py
r61829 r61931 638 638 This method returns False while the VM is online and running normally. 639 639 """ 640 fRc = self.__pollTask(); 640 641 # Call super to check if the task was signalled by runtime error or similar, 642 # if not then check the VM state via __pollTask. 643 fRc = super(SessionWrapper, self).pollTask(fLocked); 644 if not fRc: 645 fRc = self.__pollTask(); 641 646 642 647 # HACK ALERT: Lazily try registering the console event handler if
Note:
See TracChangeset
for help on using the changeset viewer.