Changeset 79470 in vbox for trunk/src/VBox/ValidationKit/tests/storage
- Timestamp:
- Jul 2, 2019 4:16:44 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/tdStorageSnapshotMerging1.py
r79323 r79470 74 74 self.oGuestToGuestSess = None; 75 75 self.oGuestToGuestTxs = None; 76 self.asStorageCtrlsDef = ['AHCI' , 'IDE', 'LsiLogicSAS', 'LsiLogic', 'BusLogic'];76 self.asStorageCtrlsDef = ['AHCI']; 77 77 self.asStorageCtrls = self.asStorageCtrlsDef; 78 78 #self.asDiskFormatsDef = ['VDI', 'VMDK', 'VHD', 'QED', 'Parallels', 'QCOW', 'iSCSI']; … … 309 309 sFile = 't-base' + sExt; 310 310 sHddPath = os.path.join(self.oVBox.oTstDrv.sScratchPath, sFile); 311 oHd = oSession.createBaseHd(sHddPath, sFmt=oDskFmt.id, cb=oOrigBaseHd.logicalSize );311 oHd = oSession.createBaseHd(sHddPath, sFmt=oDskFmt.id, cb=oOrigBaseHd.logicalSize, cMsTimeout = 15 * 60 * 1000); # 15 min 312 312 #if oSession.createBaseHd can't create disk because it exists, oHd will point to some stub object anyway 313 313 fRc = fRc and oHd is not None and (oHd.logicalSize == oOrigBaseHd.logicalSize); … … 337 337 sResFilePathRaw = os.path.join(self.oVBox.oTstDrv.sScratchPath, 't_res-flat.vmdk'); 338 338 oResHd = oSession.createBaseHd(sResFilePath, sFmt='VMDK', cb=oOrigWithDiffHd.logicalSize, 339 tMediumVariant = (vboxcon.MediumVariant_Fixed, )); 339 tMediumVariant = (vboxcon.MediumVariant_Fixed, ), 340 cMsTimeout = 15 * 60 * 1000); # 15 min 340 341 fRc = oResHd is not None; 341 342 fRc = fRc and self.cloneMedium(oHd, oResHd);
Note:
See TracChangeset
for help on using the changeset viewer.