VirtualBox

儲存庫 vbox 的更動 65978


忽略:
時間撮記:
2017-3-7 下午12:18:34 (8 年 以前)
作者:
vboxsync
訊息:

testmanager/batch: pylint 2.0.0 fixes.

位置:
trunk/src/VBox/ValidationKit/testmanager/batch
檔案:
修改 7 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/ValidationKit/testmanager/batch/add_build.py

    r62484 r65978  
    8787        if self.oConfig.asTargetOsArches is None:   asMissing.append('--os-arch');
    8888        if self.oConfig.asFiles is None:            asMissing.append('--file');
    89         if len(asMissing) > 0:
     89        if asMissing:
    9090            sys.stderr.write('syntax error: Missing: %s\n' % (asMissing,));
    9191            sys.exit(1);
  • trunk/src/VBox/ValidationKit/testmanager/batch/check_for_deleted_builds.py

    r62549 r65978  
    8787        while True:
    8888            aoBuilds = oBuildLogic.fetchForListing(iStart, cMaxRows, tsNow);
    89             if not self.oConfig.fQuiet and len(aoBuilds) > 0:
     89            if not self.oConfig.fQuiet and aoBuilds:
    9090                print 'Processing builds #%s thru #%s' % (aoBuilds[0].idBuild, aoBuilds[-1].idBuild);
    9191
  • trunk/src/VBox/ValidationKit/testmanager/batch/close_orphaned_testsets.py

    r62484 r65978  
    6969        oLogic = TestSetLogic(oDb);
    7070        aoOrphans = oLogic.fetchOrphaned();
    71         if len(aoOrphans) > 0:
     71        if aoOrphans:
    7272            # Complete them.
    7373            if self.oConfig.fJustDoIt:
  • trunk/src/VBox/ValidationKit/testmanager/batch/del_build.py

    r62484 r65978  
    5656
    5757    (oConfig, asArgs) = oParser.parse_args()
    58     if len(asArgs) == 0:
     58    if not asArgs:
    5959        if not oConfig.fQuiet:
    6060            sys.stderr.write('syntax error: No builds binaries specified\n');
  • trunk/src/VBox/ValidationKit/testmanager/batch/regen_sched_queues.py

    r62484 r65978  
    8383                print '  !!Hit exception processing "%s": %s' % (oGroup.sName, oXcpt,);
    8484            else:
    85                 if len(aoErrors) == 0:
     85                if not aoErrors:
    8686                    if not self.oConfig.fQuiet:
    8787                        print '  Successfully regenerated.';
     
    9494                        else:
    9595                            print '  !!%s (%s)' % (oError[0], oError[1]);
    96                 if len(asMessages) > 0 and not self.oConfig.fQuiet:
     96                if asMessages and not self.oConfig.fQuiet:
    9797                    print '  %d messages:' % (len(asMessages),);
    9898                    for sMsg in asMessages:
  • trunk/src/VBox/ValidationKit/testmanager/batch/vcs_import.py

    r62484 r65978  
    7979        if self.oConfig.sUrl is None:               asMissing.append('--url');
    8080        if self.oConfig.sRepository is None:        asMissing.append('--repository');
    81         if len(asMissing) > 0:
     81        if asMissing:
    8282            sys.stderr.write('syntax error: Missing: %s\n' % (asMissing,));
    8383            sys.exit(1);
  • trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py

    r65863 r65978  
    181181        Tries to reads the main log file since this will be the first source of information.
    182182        """
    183         if len(self.sMainLog) > 0:
     183        if self.sMainLog:
    184184            return self.sMainLog;
    185185        (oFile, oSizeOrError, _) = self.oTestSet.openFile('main.log', 'rb');
     
    292292        (self.oConfig, _) = oParser.parse_args();
    293293
    294         if self.oConfig.sLogFile is not None and len(self.oConfig.sLogFile) > 0:
     294        if self.oConfig.sLogFile:
    295295            self.oLogFile = open(self.oConfig.sLogFile, "a");
    296296            self.oLogFile.write('VirtualTestSheriff: $Revision$ \n');
     
    510510        #
    511511        dCommentForResultId = oCaseFile.dCommentForResultId;
    512         if len(oCaseFile.dReasonForResultId) > 0:
     512        if oCaseFile.dReasonForResultId:
    513513            # Must weed out ktHarmless.
    514514            dReasonForResultId = {};
     
    516516                if tReason is not self.ktHarmless:
    517517                    dReasonForResultId[idKey] = tReason;
    518             if len(dReasonForResultId) == 0:
     518            if not dReasonForResultId:
    519519                self.vprint(u'TODO: Closing %s without a real reason, only %s.'
    520520                            % (oCaseFile.sName, oCaseFile.dReasonForResultId));
     
    532532            if fSingleReason:
    533533                dReasonForResultId = { oCaseFile.oTestSet.idTestResult: atValues[0], };
    534                 if len(dCommentForResultId) > 0:
     534                if dCommentForResultId:
    535535                    dCommentForResultId = { oCaseFile.oTestSet.idTestResult: dCommentForResultId.values()[0], };
    536536        elif oCaseFile.tReason is not None:
     
    588588            if offEnd < 0:
    589589                return  iLine + 1 == len(asFollowingLines) and sStr.find(sLine, off) < 0;
    590             if len(sLine) > 0 and sStr.find(sLine, off, offEnd) < 0:
     590            if sLine and sStr.find(sLine, off, offEnd) < 0:
    591591                return False;
    592592
     
    898898            """
    899899            self.dprint('investigateLogSet: lengths: result log %u, VM log %u, kernel log %u, vga text %u, info text %u'
    900                         % ( len(sResultLog) if sResultLog is not None else 0,
    901                             len(sVMLog)     if sVMLog is not None else 0,
    902                             len(sKrnlLog)   if sKrnlLog is not None else 0,
    903                             len(sVgaText)   if sVgaText is not None else 0,
    904                             len(sInfoText)  if sInfoText is not None else 0, ));
     900                        % ( len(sResultLog if sResultLog else ''),
     901                            len(sVMLog     if sVMLog else ''),
     902                            len(sKrnlLog   if sKrnlLog else ''),
     903                            len(sVgaText   if sVgaText else ''),
     904                            len(sInfoText  if sInfoText else ''), ));
    905905
    906906            #self.dprint(u'main.log<<<\n%s\n<<<\n' % (sResultLog,));
     
    954954
    955955            # Continue with vga text.
    956             if sVgaText is not None and len(sVgaText) > 0:
     956            if sVgaText:
    957957                for fStopOnHit, tReason, sNeedle in self.katSimpleVgaTextReasons:
    958958                    if sVgaText.find(sNeedle) > 0:
     
    994994
    995995            # info.txt.
    996             if sInfoText is not None and len(sInfoText) > 0:
     996            if sInfoText:
    997997                for sNeedle, fnHandler in self.katInfoTextHandlers:
    998998                    if sInfoText.find(sNeedle) > 0:
     
    11741174            return self.caseClosed(oCaseFile);
    11751175
    1176         if len(oCaseFile.dReasonForResultId) > 0:
     1176        if oCaseFile.dReasonForResultId:
    11771177            self.vprint(u'TODO: Got %u out of %u - close, but no cigar. :-/'
    11781178                        % (len(oCaseFile.dReasonForResultId), len(aoFailedResults)));
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette