VirtualBox

Changeset 83970 in vbox for trunk/src/VBox/ValidationKit


Ignore:
Timestamp:
Apr 24, 2020 3:12:28 PM (5 years ago)
Author:
vboxsync
Message:

Main: bugref:9341: Pylint fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py

    r83966 r83970  
    8989        if sText is None:
    9090            return None;
    91         if isinstance(sText, buffer):
    92             try:    sText = str(sText); # pylint: disable=redefined-variable-type
    93             except: pass;
    94         if isinstance(sText, array.array):
    95             try:    sText = sText.tostring();
    96             except: pass;
     91
     92        try:    sText = str(sText); # pylint: disable=redefined-variable-type
     93        except: pass;
    9794
    9895        asLines = sText.splitlines();
     
    581578            if fRc:
    582579                break;
    583             else:
    584                 self.oTestDriver.sleep(10);
    585                 cAttempt += 1;
     580
     581            self.oTestDriver.sleep(10);
     582            cAttempt += 1;
    586583
    587584        return fRc;
     
    701698
    702699        if fRc:
    703             (fRc, _, _, _) = self.guestProcessExecute(oGuestSession, 
     700            (fRc, _, _, _) = self.guestProcessExecute(oGuestSession,
    704701                                                      'Allowing execution for the vbox installer',
    705702                                                      30 * 1000, '/usr/bin/sudo',
     
    740737            (fRc, _, _, _) = self.guestProcessExecute(oGuestSession, 'Moving to destination',
    741738                                                      30 * 1000, '/usr/bin/sudo',
    742                                                       ['/usr/bin/sudo', '/bin/mv', '/tmp/virtualbox', '/etc/default/virtualbox'],
     739                                                      ['/usr/bin/sudo', '/bin/mv', '/tmp/virtualbox',
     740                                                       '/etc/default/virtualbox'],
    743741                                                      False, True);
    744742        if fRc:
    745743            (fRc, _, _, _) = self.guestProcessExecute(oGuestSession, 'Setting permissions',
    746744                                                      30 * 1000, '/usr/bin/sudo',
    747                                                       ['/usr/bin/sudo', '/bin/chmod', '644', '/etc/default/virtualbox'],
     745                                                      ['/usr/bin/sudo', '/bin/chmod', '644',
     746                                                       '/etc/default/virtualbox'],
    748747                                                      False, True);
    749748
     
    753752            (fRc, _, _, _) = self.guestProcessExecute(oGuestSession, 'Moving to destination',
    754753                                                      30 * 1000, '/usr/bin/sudo',
    755                                                       ['/usr/bin/sudo', '/bin/mv', '/tmp/autostart.cfg', '/etc/vbox/autostart.cfg'],
     754                                                      ['/usr/bin/sudo', '/bin/mv', '/tmp/autostart.cfg',
     755                                                       '/etc/vbox/autostart.cfg'],
    756756                                                      False, True);
    757757        if fRc:
    758758            (fRc, _, _, _) = self.guestProcessExecute(oGuestSession, 'Setting permissions',
    759759                                                      30 * 1000, '/usr/bin/sudo',
    760                                                       ['/usr/bin/sudo', '/bin/chmod', '644', '/etc/vbox/autostart.cfg'],
     760                                                      ['/usr/bin/sudo', '/bin/chmod', '644',
     761                                                       '/etc/vbox/autostart.cfg'],
    761762                                                      False, True);
    762763        fRc = self.closeSession(oGuestSession, True) and fRc and True; # pychecker hack.
     
    773774            (fRc, _, _, _) = self.guestProcessExecute(oGuestSession, 'Creating new user',
    774775                                                      30 * 1000, '/usr/bin/sudo',
    775                                                       ['/usr/bin/sudo', '/usr/sbin/useradd', '-m', '-U', sUser], False, True);
     776                                                      ['/usr/bin/sudo', '/usr/sbin/useradd', '-m', '-U',
     777                                                       sUser], False, True);
    776778        fRc = self.closeSession(oGuestSession, True) and fRc and True; # pychecker hack.
    777779        return fRc;
     
    895897            if fRc:
    896898                break;
    897             else:
    898                 self.oTestDriver.sleep(10);
    899                 cAttempt += 1;
     899
     900            self.oTestDriver.sleep(10);
     901            cAttempt += 1;
    900902
    901903        return fRc;
     
    12301232        return rc;
    12311233
    1232     def parseOption(self, asArgs, iArg):                                        # pylint: disable=too-many-branches,too-many-statements
     1234    def parseOption(self, asArgs, iArg): # pylint: disable=too-many-branches,too-many-statements
    12331235        if asArgs[iArg] == '--test-build-dir':
    12341236            iArg += 1;
     
    13661368        oGuestOsHlp = None              # type: tdAutostartOs
    13671369        if sVmName == self.ksOsLinux:
    1368             oGuestOsHlp = tdAutostartOsLinux(self, self.sTestBuildDir, self.fpApiVer, self.sGuestAdditionsIso);   # pylint: disable=redefined-variable-type
     1370            oGuestOsHlp = tdAutostartOsLinux(self, self.sTestBuildDir, self.fpApiVer,
     1371                                             self.sGuestAdditionsIso);   # pylint: disable=redefined-variable-type
    13691372        elif sVmName == self.ksOsSolaris:
    1370             oGuestOsHlp = tdAutostartOsSolaris(self, self.sTestBuildDir, self.fpApiVer, self.sGuestAdditionsIso); # pylint: disable=redefined-variable-type
     1373            oGuestOsHlp = tdAutostartOsSolaris(self, self.sTestBuildDir, self.fpApiVer,
     1374                                               self.sGuestAdditionsIso); # pylint: disable=redefined-variable-type
    13711375        elif sVmName == self.ksOsDarwin:
    1372             oGuestOsHlp = tdAutostartOsDarwin(self, self.sTestBuildDir, self.fpApiVer, self.sGuestAdditionsIso);  # pylint: disable=redefined-variable-type
     1376            oGuestOsHlp = tdAutostartOsDarwin(self, self.sTestBuildDir, self.fpApiVer,
     1377                                              self.sGuestAdditionsIso);  # pylint: disable=redefined-variable-type
    13731378        elif sVmName == self.ksOsWindows:
    1374             oGuestOsHlp = tdAutostartOsWin(self, self.sTestBuildDir, self.fpApiVer, self.sGuestAdditionsIso);     # pylint: disable=redefined-variable-type
     1379            oGuestOsHlp = tdAutostartOsWin(self, self.sTestBuildDir, self.fpApiVer,
     1380                                           self.sGuestAdditionsIso);     # pylint: disable=redefined-variable-type
    13751381
    13761382        sTestUserAllow = 'test1';
Note: See TracChangeset for help on using the changeset viewer.

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