Changeset 62269 in vbox for trunk/src/VBox/ValidationKit/testmanager
- Timestamp:
- Jul 15, 2016 8:57:45 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108788
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r62267 r62269 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, oFailedResult.idTestResult); 898 return self.caseClosed(oCaseFile); 899 894 900 # 895 901 # Go thru each failed result. … … 917 923 or sResultLog.find('(len(self._asXml, asText))') > 0: 918 924 oCaseFile.noteReasonForId(self.ktReason_Ignore_Buggy_Test_Driver, oFailedResult.idTestResult); 919 920 elif sResultLog.find('AttributeError: \'NoneType\' object has no attribute \'addObserver\'') > 0:921 oCaseFile.noteReasonForId(self.ktReason_Buggy_Build_Broken_Build, oFailedResult.idTestResult);922 925 923 926 else:
Note:
See TracChangeset
for help on using the changeset viewer.