VirtualBox

Ignore:
Timestamp:
Jul 2, 2019 4:16:44 PM (6 years ago)
Author:
vboxsync
Message:

Main: bugref:6598: Set 15 min timeout for createHd and left the only AHCI controller in the testcase

File:
1 edited

Legend:

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

    r79323 r79470  
    7474        self.oGuestToGuestSess = None;
    7575        self.oGuestToGuestTxs  = None;
    76         self.asStorageCtrlsDef = ['AHCI', 'IDE', 'LsiLogicSAS', 'LsiLogic', 'BusLogic'];
     76        self.asStorageCtrlsDef = ['AHCI'];
    7777        self.asStorageCtrls    = self.asStorageCtrlsDef;
    7878        #self.asDiskFormatsDef  = ['VDI', 'VMDK', 'VHD', 'QED', 'Parallels', 'QCOW', 'iSCSI'];
     
    309309        sFile = 't-base' + sExt;
    310310        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
    312312        #if oSession.createBaseHd can't create disk because it exists, oHd will point to some stub object anyway
    313313        fRc = fRc and oHd is not None and (oHd.logicalSize == oOrigBaseHd.logicalSize);
     
    337337                    sResFilePathRaw = os.path.join(self.oVBox.oTstDrv.sScratchPath, 't_res-flat.vmdk');
    338338                    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
    340341                    fRc = oResHd is not None;
    341342                    fRc = fRc and self.cloneMedium(oHd, oResHd);
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