Changeset 104833 in vbox
- Timestamp:
- Jun 4, 2024 10:18:23 AM (8 months ago)
- Location:
- trunk/src/VBox/ValidationKit/tests/storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/remoteexecutor.py
r104832 r104833 216 216 else: 217 217 fRc = False; 218 return fRc, sOutput, sError;218 return (fRc, sOutput, sError); 219 219 220 220 def execBinaryNoStdOut(self, sExec, asArgs, sInput = None): -
trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py
r104770 r104833 345 345 if cbVol is not None: 346 346 sFdiskScript = ',' + str(cbVol // 512) + '\n'; # Get number of sectors 347 fRc = oExec.execBinary('sfdisk', ('--no-reread', '--wipe', 'always', '-q', '-f', sDiskPath), \348 347 fRc, _, _ = oExec.execBinary('sfdisk', ('--no-reread', '--wipe', 'always', '-q', '-f', sDiskPath), \ 348 sFdiskScript); 349 349 if fRc: 350 350 if sDiskPath.find('nvme') != -1:
Note:
See TracChangeset
for help on using the changeset viewer.