Changeset 33083 in vbox for trunk/src/VBox/Devices/Storage/testcase
- Timestamp:
- Oct 12, 2010 8:27:08 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 66612
- Location:
- trunk/src/VBox/Devices/Storage/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/testcase/tstVD.cpp
r32536 r33083 743 743 rc = VDOpen(pVD, "VMDK", src, VD_OPEN_FLAGS_NORMAL, NULL); 744 744 CHECK("VDOpen()"); 745 rc = VDCopy(pVD, 0, pVD, "VMDK", dst, true, 0, VD_IMAGE_FLAGS_NONE, NULL, NULL, NULL, NULL); 745 rc = VDCopy(pVD, 0, pVD, "VMDK", dst, true, 0, VD_IMAGE_FLAGS_NONE, NULL, 746 VD_OPEN_FLAGS_NORMAL, NULL, NULL, NULL); 746 747 CHECK("VDCopy()"); 747 748 -
trunk/src/VBox/Devices/Storage/testcase/vbox-img.cpp
r32536 r33083 373 373 /* Create the output image */ 374 374 rc = VDCopy(pSrcDisk, VD_LAST_IMAGE, pDstDisk, pszDstFormat, 375 pszDstFilename, false, 0, uImageFlags, NULL, NULL, NULL, NULL); 375 pszDstFilename, false, 0, uImageFlags, NULL, 376 VD_OPEN_FLAGS_NORMAL, NULL, NULL, NULL); 376 377 if (RT_FAILURE(rc)) 377 378 {
Note:
See TracChangeset
for help on using the changeset viewer.