VirtualBox

Ignore:
Timestamp:
Jun 29, 2016 1:04:00 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
108370
Message:

testdriver/vbox*.py: Stop testing on runtime errors.

Location:
trunk/src/VBox/ValidationKit/testdriver
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/vbox.py

    r61828 r61931  
    754754    def onMachineStateChange(self, sMachineId, eState):                         # pylint: disable=W0613
    755755        """ 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();
    756764        self.oVBoxMgr.interruptWaitEvents();
    757765
  • trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py

    r61829 r61931  
    638638        This method returns False while the VM is online and running normally.
    639639        """
    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();
    641646
    642647        # HACK ALERT: Lazily try registering the console event handler if
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette