Changeset 65306 in vbox for trunk/src/VBox/ValidationKit/testmanager
- Timestamp:
- Jan 16, 2017 8:39:30 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112877
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r65250 r65306 444 444 ktReason_Host_HostMemoryLow = ( 'Host', 'HostMemoryLow' ); 445 445 ktReason_Host_DriverNotLoaded = ( 'Host', 'Driver not loaded' ); 446 ktReason_Host_DriverNotUnloading = ( 'Host', 'Driver not unloading' ); 446 447 ktReason_Host_NotSignedWithBuildCert = ( 'Host', 'Not signed with build cert' ); 447 448 ktReason_Host_Reboot_OSX_Watchdog_Timeout = ( 'Host Reboot', 'OSX Watchdog Timeout' ); … … 619 620 # The investigative units. 620 621 # 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 621 657 622 658 def investigateBadTestBox(self, oCaseFile): … … 900 936 return False; 901 937 902 903 938 def investigateVBoxVMTest(self, oCaseFile, fSingleVM): 904 939 """ … … 970 1005 sResultLog = TestSetData.extractLogSectionElapsed(sMainLog, oFailedResult.tsCreated, oFailedResult.tsElapsed); 971 1006 if oFailedResult.sName == 'Installing VirtualBox': 972 self. vprint('TODO: Installation failure');1007 self.investigateInstallUninstallFailure(oCaseFile, oFailedResult, sResultLog, fInstall = True) 973 1008 974 1009 elif oFailedResult.sName == 'Uninstalling VirtualBox': 975 self. vprint('TODO: Uninstallation failure');1010 self.investigateInstallUninstallFailure(oCaseFile, oFailedResult, sResultLog, fInstall = False) 976 1011 977 1012 elif self.isResultFromVMRun(oFailedResult, sResultLog):
Note:
See TracChangeset
for help on using the changeset viewer.