- Timestamp:
- Feb 13, 2012 8:33:20 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76249
- Location:
- trunk/src/VBox/HostServices/SharedFolders
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstSharedFolderService.cpp
r39612 r40108 137 137 138 138 extern int testRTDirOpen(PRTDIR *ppDir, const char *pszPath) 139 { 140 /* RTPrintf("%s: pszPath=%s\n", __PRETTY_FUNCTION__, pszPath); */ 141 ARRAY_FROM_PATH(testRTDirOpenName, pszPath); 142 *ppDir = testRTDirOpenpDir; 143 testRTDirOpenpDir = 0; 144 return VINF_SUCCESS; 145 } 146 147 /** @todo Do something useful with the last two arguments. */ 148 extern int testRTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER, uint32_t) 139 149 { 140 150 /* RTPrintf("%s: pszPath=%s\n", __PRETTY_FUNCTION__, pszPath); */ -
trunk/src/VBox/HostServices/SharedFolders/teststubs.h
r39612 r40108 33 33 #define RTDirOpen testRTDirOpen 34 34 extern int testRTDirOpen(PRTDIR *ppDir, const char *pszPath); 35 #define RTDirOpenFiltered testRTDirOpenFiltered 36 extern int testRTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fOpen); 35 37 #define RTDirQueryInfo testRTDirQueryInfo 36 38 extern int testRTDirQueryInfo(PRTDIR pDir, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs); -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r39646 r40108 1179 1179 testCreateFileSimple(hTest); 1180 1180 /* Simple opening of an existing directory. */ 1181 /** @todo How do wildcards in the path name work? */ 1181 1182 testCreateDirSimple(hTest); 1182 1183 /* If the number or types of parameters are wrong the API should fail. */
Note:
See TracChangeset
for help on using the changeset viewer.