Changeset 100080 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Jun 6, 2023 7:34:09 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/api/tdCloneMedium1.py
r100078 r100080 254 254 255 255 try: 256 oVBox = self.oTstDrv.oVBoxMgr.getVirtualBox()257 256 oVM = self.oTstDrv.createTestVM('test-medium-clone-base', 1, None, 4) 258 257 assert oVM is not None … … 265 264 hd1 = oSession.createBaseHd(sHddPath, cb=1024*1024) 266 265 if hd1 is None: 267 266 fRc = False 268 267 for i in range(2, cImages + 1): 269 268 sHddPath = os.path.join(self.oTstDrv.sScratchPath, 'CloneTest' + str(i) + '.vdi') 270 269 if i == 2: 271 270 oHd = oSession.createDiffHd(hd1, sHddPath) 272 hd2 = oHd273 271 else: 274 272 oHd = oSession.createDiffHd(oHd, sHddPath)
Note:
See TracChangeset
for help on using the changeset viewer.