Changeset 62181 in vbox for trunk/src/VBox/ValidationKit/tests/storage
- Timestamp:
- Jul 12, 2016 9:03:26 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108688
- Location:
- trunk/src/VBox/ValidationKit/tests/storage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/remoteexecutor.py
r62123 r62181 48 48 if sInput is not None: 49 49 self.sInput.write(self._toString(sInput)); 50 self.sInput.seek(0); 50 51 self.sOutput = ''; 51 52 … … 150 151 if sInput is not None: 151 152 oStdIn = StdInOutBuffer(sInput); 153 else: 154 oStdIn = '/dev/null'; 152 155 fRc = self.oTxsSession.syncExecEx(sExec, (sExec,) + asArgs, 153 156 oStdIn = oStdIn, oStdOut = oStdOut); -
trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py
r62118 r62181 183 183 Returns the mountpoint base for the host. 184 184 """ 185 return '/m edia';185 return '/mnt'; 186 186 187 187 def createStoragePool(self, oExec, sPool, asDisks, sRaidLvl): -
trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py
r62136 r62181 150 150 ('re-readers', 'ReRead'), 151 151 ('stride readers', 'StrideRead'), 152 ('reverse readers', 'ReverseRead'), 152 153 ('random readers', 'RandomRead'), 153 154 ('mixed workload', 'MixedWorkload'), … … 174 175 """ Runs the testcase """ 175 176 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'); 177 178 if self.fDirectIo: 178 179 tupArgs += ('-I',); … … 605 606 else: 606 607 if self.fUseScratch: 607 asPaths = [ self. 608 asPaths = [ self.sScratchPath ]; 608 609 else: 609 610 # Create a new default storage config on the host … … 693 694 return fRc; 694 695 695 696 697 696 if __name__ == '__main__': 698 697 sys.exit(tdStorageBenchmark().main(sys.argv));
Note:
See TracChangeset
for help on using the changeset viewer.