Changeset 103423 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Feb 19, 2024 10:24:09 AM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/fs/FsPerf.cpp
r103418 r103423 99 99 * Defined Constants And Macros * 100 100 *********************************************************************************************************************************/ 101 /** Used for cutting the the-d parameter value short and avoid a number of buffer overflow checks. */101 /** Used for cutting the -d parameter value short and avoid a number of buffer overflow checks. */ 102 102 #define FSPERF_MAX_NEEDED_PATH 224 103 103 /** The max path used by this code. … … 2954 2954 { 2955 2955 char szRenamed[FSPERF_MAX_PATH]; 2956 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szRenamed, sizeof(szRenamed), pszFile), sizeof(szRenamed), "-renamed"));2956 strcat(strcpy(szRenamed, pszFile), "-renamed"); 2957 2957 if (!(iIteration & 1)) 2958 2958 return RTPathRename(pszFile, szRenamed, 0); … … 2971 2971 2972 2972 /* Non-existing files. */ 2973 RTTESTI_CHECK_RC_OK(RTStrCopy(szPath, sizeof(szPath), InEmptyDir(RT_STR_TUPLE("other-no-such-file"))));2973 strcpy(szPath, InEmptyDir(RT_STR_TUPLE("other-no-such-file"))); 2974 2974 RTTESTI_CHECK_RC(RTPathRename(InEmptyDir(RT_STR_TUPLE("no-such-file")), szPath, 0), VERR_FILE_NOT_FOUND); 2975 2976 RTTESTI_CHECK_RC_OK(RTStrCopy(szPath, sizeof(szPath), InEmptyDir(RT_STR_TUPLE("no-such-dir" RTPATH_SLASH_STR "other-no-such-file")))); 2975 strcpy(szPath, InEmptyDir(RT_STR_TUPLE("no-such-dir" RTPATH_SLASH_STR "other-no-such-file"))); 2977 2976 RTTESTI_CHECK_RC(RTPathRename(InEmptyDir(RT_STR_TUPLE("no-such-dir" RTPATH_SLASH_STR "no-such-file")), szPath, 0), 2978 2977 FSPERF_VERR_PATH_NOT_FOUND); 2979 2980 RTTESTI_CHECK_RC_OK(RTStrCopy(szPath, sizeof(szPath), InEmptyDir(RT_STR_TUPLE("other-no-such-file")))); 2978 strcpy(szPath, InEmptyDir(RT_STR_TUPLE("other-no-such-file"))); 2981 2979 RTTESTI_CHECK_RC(RTPathRename(InDir(RT_STR_TUPLE("known-file" RTPATH_SLASH_STR "no-such-file")), szPath, 0), VERR_PATH_NOT_FOUND); 2982 2980 … … 2985 2983 RTFILE_O_CREATE_REPLACE | RTFILE_O_DENY_NONE | RTFILE_O_WRITE), VINF_SUCCESS); 2986 2984 RTTESTI_CHECK_RC(RTFileClose(hFile1), VINF_SUCCESS); 2987 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szPath, sizeof(szPath), g_szDir), sizeof(szPath), "-no-such-dir" RTPATH_SLASH_STR "file16"));2985 strcat(strcpy(szPath, g_szDir), "-no-such-dir" RTPATH_SLASH_STR "file16"); 2988 2986 RTTESTI_CHECK_RC(RTPathRename(szPath, g_szDir, 0), FSPERF_VERR_PATH_NOT_FOUND); 2989 2987 RTTESTI_CHECK_RC(RTPathRename(g_szDir, szPath, 0), FSPERF_VERR_PATH_NOT_FOUND); 2990 2988 2991 2989 /* Shallow: */ 2992 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szPath, sizeof(szPath), g_szDir), sizeof(szPath), "-other"));2990 strcat(strcpy(szPath, g_szDir), "-other"); 2993 2991 PROFILE_FN(RTPathRename(iIteration & 1 ? szPath : g_szDir, iIteration & 1 ? g_szDir : szPath, 0), g_nsTestRun, "RTPathRename"); 2994 2992 … … 2998 2996 RTTESTI_CHECK_RC(RTFileClose(hFile1), VINF_SUCCESS); 2999 2997 3000 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szPath, sizeof(szPath), g_szDeepDir), sizeof(szPath), "-other"));2998 strcat(strcpy(szPath, g_szDeepDir), "-other"); 3001 2999 PROFILE_FN(RTPathRename(iIteration & 1 ? szPath : g_szDeepDir, iIteration & 1 ? g_szDeepDir : szPath, 0), 3002 3000 g_nsTestRun, "RTPathRename/deep");
Note:
See TracChangeset
for help on using the changeset viewer.