Changeset 56684 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Jun 29, 2015 8:03:30 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101326
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r56682 r56684 2891 2891 break; 2892 2892 try: 2893 if curTest.cbOffset > 0: # The offset parameter is gone.2893 if curTest.cbOffset > 0: 2894 2894 if self.oTstDrv.fpApiVer >= 5.0: 2895 2895 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.getAccessMode(), curTest.getOpenAction(), 2896 curTest.getSharingMode(), curTest.lCreationMode, []); 2897 curFile.seek(curTest.cbOffset, vboxcon.FileSeekOrigin_Begin); 2896 curTest.getSharingMode(), curTest.lCreationMode, curTest.cbOffset); 2898 2897 else: 2899 2898 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.sOpenMode, curTest.sDisposition, \ … … 3005 3004 break; 3006 3005 try: 3007 if curTest.cbOffset > 0: # The offset parameter is gone.3006 if curTest.cbOffset > 0: 3008 3007 if self.oTstDrv.fpApiVer >= 5.0: 3009 3008 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.getAccessMode(), curTest.getOpenAction(), 3010 curTest.getSharingMode(), []); 3011 curFile.seek(curTest.cbOffset, vboxcon.FileSeekOrigin_Begin); 3009 curTest.getSharingMode(), curTest.cbOffset); 3012 3010 else: 3013 3011 curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.sOpenMode, curTest.sDisposition, \
Note:
See TracChangeset
for help on using the changeset viewer.