Changeset 94128 in vbox for trunk/src/VBox/ValidationKit/testmanager
- Timestamp:
- Mar 8, 2022 2:50:04 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150377
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testresults.py
r93115 r94128 2155 2155 self._fetchResultTreeNodeExtras(oRoot, aoRow[-4], aoRow[-3], aoRow[-2], aoRow[-1]); 2156 2156 2157 # The chil ren (if any).2157 # The children (if any). 2158 2158 dLookup = { oRoot.idTestResult: oRoot }; 2159 2159 oParent = oRoot; … … 2233 2233 oCurNode.aoFiles.append(TestResultFileDataEx().initFromDbRow(aoRow)); 2234 2234 2235 if fHasReasons or True:2235 if fHasReasons: 2236 2236 if self.oFailureReasonLogic is None: 2237 2237 self.oFailureReasonLogic = FailureReasonLogic(self._oDb); … … 2539 2539 , ( oTestResult.idTestResult, )); 2540 2540 cMinErrors = self._oDb.fetchOne()[0] + oTestResult.cErrors; 2541 if cErrors < cMinErrors: 2542 cErrors = cMinErrors; 2541 cErrors = max(cErrors, cMinErrors); 2543 2542 if cErrors > 0 and enmStatus == TestResultData.ksTestStatus_Success: 2544 2543 enmStatus = TestResultData.ksTestStatus_Failure
Note:
See TracChangeset
for help on using the changeset viewer.