VirtualBox

Ignore:
Timestamp:
Jul 12, 2016 9:03:26 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
108688
Message:

ValidationKit/vboxwrappers.py: fix typos

Location:
trunk/src/VBox/ValidationKit/tests/storage
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/storage/remoteexecutor.py

    r62123 r62181  
    4848        if sInput is not None:
    4949            self.sInput.write(self._toString(sInput));
     50            self.sInput.seek(0);
    5051        self.sOutput  = '';
    5152
     
    150151            if sInput is not None:
    151152                oStdIn = StdInOutBuffer(sInput);
     153            else:
     154                oStdIn = '/dev/null';
    152155            fRc = self.oTxsSession.syncExecEx(sExec, (sExec,) + asArgs,
    153156                                              oStdIn = oStdIn, oStdOut = oStdOut);
  • trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py

    r62118 r62181  
    183183        Returns the mountpoint base for the host.
    184184        """
    185         return '/media';
     185        return '/mnt';
    186186
    187187    def createStoragePool(self, oExec, sPool, asDisks, sRaidLvl):
  • trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py

    r62136 r62181  
    150150                          ('re-readers',      'ReRead'),
    151151                          ('stride readers',  'StrideRead'),
     152                          ('reverse readers', 'ReverseRead'),
    152153                          ('random readers',  'RandomRead'),
    153154                          ('mixed workload',  'MixedWorkload'),
     
    174175        """ Runs the testcase """
    175176        tupArgs = ('-r', self.sRecordSize, '-s', self.sTestsetSize, \
    176                    '-t', '1', '-T', '-H', self.sQueueDepth, '-F', self.sFilePath + '/iozone.tmp');
     177                   '-t', '1', '-T', '-F', self.sFilePath + '/iozone.tmp');
    177178        if self.fDirectIo:
    178179            tupArgs += ('-I',);
     
    605606                else:
    606607                    if self.fUseScratch:
    607                         asPaths = [ self. sScratchPath ];
     608                        asPaths = [ self.sScratchPath ];
    608609                    else:
    609610                        # Create a new default storage config on the host
     
    693694        return fRc;
    694695
    695 
    696 
    697696if __name__ == '__main__':
    698697    sys.exit(tdStorageBenchmark().main(sys.argv));
Note: See TracChangeset for help on using the changeset viewer.

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