Changeset 62271 in vbox for trunk/src/VBox
- Timestamp:
- Jul 15, 2016 9:31:22 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r62270 r62271 892 892 return self.caseClosed(oCaseFile); 893 893 894 # Broken XPCOM build.895 if sMainLog.find('AttributeError: \'NoneType\' object has no attribute \'addObserver\'') > 0 \896 or sMainLog.find('Details: code NS_ERROR_INVALID_POINTER') > 0:897 oCaseFile.noteReason(self.ktReason_Buggy_Build_Broken_Build);898 return self.caseClosed(oCaseFile);899 900 894 # 901 895 # Go thru each failed result. … … 923 917 or sResultLog.find('(len(self._asXml, asText))') > 0: 924 918 oCaseFile.noteReasonForId(self.ktReason_Ignore_Buggy_Test_Driver, oFailedResult.idTestResult); 919 920 if sMainLog.find('AttributeError: \'NoneType\' object has no attribute \'addObserver\'') > 0 \ 921 or sMainLog.find('Details: code NS_ERROR_INVALID_POINTER') > 0: 922 oCaseFile.noteReason(self.ktReason_Buggy_Build_Broken_Build); 923 return self.caseClosed(oCaseFile); 925 924 926 925 else:
Note:
See TracChangeset
for help on using the changeset viewer.