VirtualBox

Ignore:
Timestamp:
Jan 16, 2017 8:39:30 AM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
112877
Message:

vsheriff: Try detect VBoxDrv unload problem on darwin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py

    r65250 r65306  
    444444    ktReason_Host_HostMemoryLow                        = ( 'Host',              'HostMemoryLow' );
    445445    ktReason_Host_DriverNotLoaded                      = ( 'Host',              'Driver not loaded' );
     446    ktReason_Host_DriverNotUnloading                   = ( 'Host',              'Driver not unloading' );
    446447    ktReason_Host_NotSignedWithBuildCert               = ( 'Host',              'Not signed with build cert' );
    447448    ktReason_Host_Reboot_OSX_Watchdog_Timeout          = ( 'Host Reboot',       'OSX Watchdog Timeout' );
     
    619620    # The investigative units.
    620621    #
     622
     623    katSimpleInstallUninstallMainLogReasons = [
     624        # ( Whether to stop on hit, reason tuple, needle text. )
     625    ];
     626
     627    kdatSimpleInstallUninstallMainLogReasonsPerOs = {
     628        'darwin': [
     629            # ( Whether to stop on hit, reason tuple, needle text. )
     630            ( True, ktReason_Host_DriverNotUnloading,
     631              'Can\'t remove kext org.virtualbox.kext.VBoxDrv; services failed to terminate - 0xe00002c7' ),
     632        ],
     633    };
     634
     635
     636    def investigateInstallUninstallFailure(self, oCaseFile, oFailedResult, sResultLog, fInstall):
     637        """
     638        Investigates an install or uninstall failure.
     639
     640        We lump the two together since the installation typically also performs
     641        an uninstall first and will be seeing similar issues to the uninstall.
     642        """
     643        atSimple = self.katSimpleInstallUninstallMainLogReasons;
     644        if oCaseFile.oTestBox.sOs in self.kdatSimpleInstallUninstallMainLogReasonsPerOs:
     645            atSimple = self.kdatSimpleInstallUninstallMainLogReasonsPerOs[oCaseFile.oTestBox.sOs] + atSimple;
     646
     647        fFoundSomething = False;
     648        for fStopOnHit, tReason, sNeedle in atSimple:
     649            if sResultLog.find(sNeedle) > 0:
     650                oCaseFile.noteReasonForId(tReason, oFailedResult.idTestResult);
     651                if fStopOnHit:
     652                    return True;
     653                fFoundSomething = True;
     654
     655        return fFoundSomething if fFoundSomething else None;
     656
    621657
    622658    def investigateBadTestBox(self, oCaseFile):
     
    900936        return False;
    901937
    902 
    903938    def investigateVBoxVMTest(self, oCaseFile, fSingleVM):
    904939        """
     
    9701005            sResultLog = TestSetData.extractLogSectionElapsed(sMainLog, oFailedResult.tsCreated, oFailedResult.tsElapsed);
    9711006            if oFailedResult.sName == 'Installing VirtualBox':
    972                 self.vprint('TODO: Installation failure');
     1007                self.investigateInstallUninstallFailure(oCaseFile, oFailedResult, sResultLog, fInstall = True)
    9731008
    9741009            elif oFailedResult.sName == 'Uninstalling VirtualBox':
    975                 self.vprint('TODO: Uninstallation failure');
     1010                self.investigateInstallUninstallFailure(oCaseFile, oFailedResult, sResultLog, fInstall = False)
    9761011
    9771012            elif self.isResultFromVMRun(oFailedResult, sResultLog):
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