Changeset 55668 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- May 5, 2015 3:45:27 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100056
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r55634 r55668 2720 2720 break; 2721 2721 try: 2722 if curTest.cbOffset > 0: 2722 if curTest.cbOffset > 0: # The offset parameter is gone. 2723 2723 if self.oTstDrv.fpApiVer >= 5.0: 2724 2724 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.getAccessMode(), curTest.getOpenAction(), 2725 curTest.getSharingMode(), curTest.lCreationMode, curTest.cbOffset); 2725 curTest.getSharingMode(), curTest.lCreationMode, []); 2726 curFile.seek(curTest.cbOffset, vboxcon.FileSeekOrigin_Begin); 2726 2727 else: 2727 2728 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.sOpenMode, curTest.sDisposition, \ … … 2833 2834 break; 2834 2835 try: 2835 if curTest.cbOffset > 0: 2836 if curTest.cbOffset > 0: # The offset parameter is gone. 2836 2837 if self.oTstDrv.fpApiVer >= 5.0: 2837 2838 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.getAccessMode(), curTest.getOpenAction(), 2838 curTest.getSharingMode(), curTest.cbOffset); 2839 curTest.getSharingMode(), []); 2840 curFile.seek(curTest.cbOffset, vboxcon.FileSeekOrigin_Begin); 2839 2841 else: 2840 2842 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.sOpenMode, curTest.sDisposition, \
Note:
See TracChangeset
for help on using the changeset viewer.