Changeset 71520 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Mar 26, 2018 4:23:44 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r71519 r71520 3223 3223 curProgress = curGuestSession.directoryCopyToGuest(curTest.sSrc, curTest.sDst, curTest.aFlags); 3224 3224 if curProgress is not None: 3225 oProgress = vboxwrappers.ProgressWrapper(curProgress, self.oTstDrv.oVBoxMgr, self.oTstDrv, "gctrlDirCopyTo"); 3225 oProgress = vboxwrappers.ProgressWrapper(curProgress, self.oTstDrv.oVBoxMgr, self.oTstDrv, \ 3226 "gctrlDirCopyTo"); 3226 3227 try: 3227 3228 oProgress.wait(); … … 3347 3348 curProgress = curGuestSession.directoryCopyFrom(curTest.sSrc, curTest.sDst, curTest.aFlags); 3348 3349 if curProgress is not None: 3349 oProgress = vboxwrappers.ProgressWrapper(curProgress, self.oTstDrv.oVBoxMgr, self.oTstDrv, "gctrlDirCopyFrom"); 3350 oProgress = vboxwrappers.ProgressWrapper(curProgress, self.oTstDrv.oVBoxMgr, self.oTstDrv, \ 3351 "gctrlDirCopyFrom"); 3350 3352 try: 3351 3353 oProgress.wait(); … … 3363 3365 else: 3364 3366 reporter.log2('Element "%s" not handled (yet), skipping' % oFsInfo.name); 3365 pass;3366 3367 3367 3368 except:
Note:
See TracChangeset
for help on using the changeset viewer.