VirtualBox

Changeset 79022 in vbox for trunk/src/VBox/ValidationKit


Ignore:
Timestamp:
Jun 6, 2019 12:39:01 PM (6 years ago)
Author:
vboxsync
Message:

tdStorageSnapshotMerging1.py: Readable time out values, please! Don't put anything unnecessary inside the try/except block!

File:
1 edited

Legend:

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

    r79021 r79022  
    157157        try:
    158158            oProgressCom = oMedium.resize(cbNewSize);
    159             oProgress = vboxwrappers.ProgressWrapper(oProgressCom, self.oVBoxMgr, self.oVBox.oTstDrv,
    160                                                      'Resize medium %s' % (oMedium.name));
    161             oProgress.wait(cMsTimeout = 15*60*1000); # 15 min
    162             oProgress.logResult();
    163159        except:
    164160            reporter.logXcpt('IMedium::resize failed on %s' % (oMedium.name));
    165161            return False;
    166 
     162        oProgress = vboxwrappers.ProgressWrapper(oProgressCom, self.oVBoxMgr, self.oVBox.oTstDrv,
     163                                                 'Resize medium %s' % (oMedium.name));
     164        oProgress.wait(cMsTimeout = 15*60*1000); # 15 min
     165        oProgress.logResult();
    167166        return True;
    168167
     
    238237        try:
    239238            oProgressCom = oSrcHd.cloneTo(oTgtHd, (vboxcon.MediumVariant_Standard, ), None);
    240             oProgress = vboxwrappers.ProgressWrapper(oProgressCom, self.oVBoxMgr, self.oVBox.oTstDrv,
    241                                                      'clone base disk %s to %s' % (oSrcHd.name, oTgtHd.name));
    242             oProgress.wait(cMsTimeout = 1000000);
    243             oProgress.logResult();
    244239        except:
    245240            reporter.errorXcpt('failed to clone medium %s to %s' % (oSrcHd.name, oTgtHd.name));
    246241            return False;
    247 
     242        oProgress = vboxwrappers.ProgressWrapper(oProgressCom, self.oVBoxMgr, self.oVBox.oTstDrv,
     243                                                 'clone base disk %s to %s' % (oSrcHd.name, oTgtHd.name));
     244        oProgress.wait(cMsTimeout = 15*60*1000); # 15 min
     245        oProgress.logResult();
    248246        return True;
    249247
     
    260258                else:
    261259                    oProgress = oVM.delete(None);
    262                 oProgress.wait(cMsTimeout = 1000000);
    263 
    264260            except:
    265261                reporter.logXcpt();
    266 
     262            else:
     263                oProgress.wait(cMsTimeout = 15*60*1000); # 15 min
    267264        else:
    268265            try:    oVM.deleteSettings();
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