Changeset 62545 in vbox
- Timestamp:
- Jul 25, 2016 4:03:38 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109114
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/check_for_deleted_builds.py
r62544 r62545 87 87 while True: 88 88 aoBuilds = oBuildLogic.fetchForListing(iStart, cMaxRows, tsNow); 89 if not self.oConfig.fQuiet and len(aoBuilds) > 0: 90 print 'Processing builds #%s thru #%s' % (aoBuilds[0].idBuild, aoBuilds[-1].idBuild); 91 89 92 for oBuild in aoBuilds: 90 93 if oBuild.fBinariesDeleted is False: … … 96 99 oBuild.fBinariesDeleted = True; 97 100 oBuildLogic.editEntry(oBuild, fCommit = True); 101 elif rc is None and not self.oConfig.fQuiet: 102 print 'Unable to determine state of build #%s' % (oBuild.idBuild,); 98 103 99 104 # advance
Note:
See TracChangeset
for help on using the changeset viewer.