Changeset 103077 in vbox
- Timestamp:
- Jan 26, 2024 8:40:12 AM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161323
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r98655 r103077 659 659 ktReason_Host_DoubleFreeHeap = ( 'Host', 'Double free or corruption' ); 660 660 ktReason_Host_LeftoverService = ( 'Host', 'Leftover service' ); 661 ktReason_Host_win32com_gen_py = ( 'Host', 'win32com.gen_py' );661 ktReason_Host_win32com_gen_py_not_found = ( 'Host', 'win32com.gen_py not found' ); 662 662 ktReason_Host_Reboot_OSX_Watchdog_Timeout = ( 'Host Reboot', 'OSX Watchdog Timeout' ); 663 663 ktReason_Host_Modprobe_Failed = ( 'Host', 'Modprobe failed' ); 664 664 ktReason_Host_NetworkMisconfiguration = ( 'Host', 'Network misconfiguration' ); 665 ktReason_Host_Python_vboxapi_not_found = ( 'Host', 'Python API (vboxapi) not found' ); 666 ktReason_Host_Python_xpcom_not_found = ( 'Host', 'Python API (xpcom) not found' ); 665 667 ktReason_Host_TSTInfo_Accuracy_OOR = ( 'Host', 'TSTInfo accuracy out of range' ); 666 668 ktReason_Host_UninstallationFailed = ( 'Host', 'Uninstallation failed' ); … … 1131 1133 katSimpleMainLogReasons = [ 1132 1134 # ( Whether to stop on hit, reason tuple, needle text. ) 1133 ( False, ktReason_Host_win32com_gen_py, 'ModuleNotFoundError: No module named \'win32com.gen_py' ), 1134 1135 ( False, ktReason_Host_win32com_gen_py_not_found, 'ModuleNotFoundError: No module named \'win32com.gen_py' ), 1136 ( False, ktReason_Host_Python_vboxapi_not_found, 'ImportError: No module named vboxapi' ), 1137 ( False, ktReason_Host_Python_xpcom_not_found, 'ImportError: No module named xpcom' ), 1135 1138 ]; 1136 1139 … … 1645 1648 1646 1649 # 1650 # Python bindings installation problem. 1651 # 1652 if sMainLog.find('ImportError: No module named vboxapi') > 0: 1653 oCaseFile.noteReason(self.ktReason_Host_Python_vboxapi_not_found); 1654 return self.caseClosed(oCaseFile); 1655 1656 if sMainLog.find('ImportError: No module named xpcom') > 0: 1657 oCaseFile.noteReason(self.ktReason_Host_Python_xpcom_not_found); 1658 return self.caseClosed(oCaseFile); 1659 1660 # 1647 1661 # Windows python/com screwup. 1648 1662 # 1649 1663 if sMainLog.find('ModuleNotFoundError: No module named \'win32com.gen_py') > 0: 1650 oCaseFile.noteReason(self.ktReason_Host_win32com_gen_py );1664 oCaseFile.noteReason(self.ktReason_Host_win32com_gen_py_not_found); 1651 1665 return self.caseClosed(oCaseFile); 1652 1666
Note:
See TracChangeset
for help on using the changeset viewer.