VirtualBox

Changeset 86507 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Oct 9, 2020 4:15:27 PM (4 years ago)
Author:
vboxsync
Message:

ValKit/vbox.py: VBoxSVC failure should be checked and reported. [reporting fix] bugref:9841

File:
1 edited

Legend:

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

    r86503 r86507  
    13171317            else:
    13181318                reporter.log('VBoxSVC is no longer running...');
     1319
    13191320            if not self.oVBoxSvcProcess.isRunning():
    13201321                iExit = self.oVBoxSvcProcess.getExitCode();
     
    19301931        end of the job.
    19311932        """
     1933        cErrorEntry = reporter.getErrorCount();
    19321934
    19331935        # Kill any left over VM processes.
     
    19641966
    19651967        # 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
    19671975
    19681976    def actionAbort(self):
Note: See TracChangeset for help on using the changeset viewer.

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