Changeset 103285 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Feb 8, 2024 3:27:12 PM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161579
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/fs/FsPerf.cpp
r103275 r103285 2954 2954 { 2955 2955 char szRenamed[FSPERF_MAX_PATH]; 2956 strcat(strcpy(szRenamed, pszFile), "-renamed");2956 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szRenamed, sizeof(szRenamed), pszFile), sizeof(szRenamed), "-renamed")); 2957 2957 if (!(iIteration & 1)) 2958 2958 return RTPathRename(pszFile, szRenamed, 0); … … 2971 2971 2972 2972 /* Non-existing files. */ 2973 strcpy(szPath, InEmptyDir(RT_STR_TUPLE("other-no-such-file")));2973 RTTESTI_CHECK_RC_OK(RTStrCopy(szPath, sizeof(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 strcpy(szPath, InEmptyDir(RT_STR_TUPLE("no-such-dir" RTPATH_SLASH_STR "other-no-such-file"))); 2975 2976 RTTESTI_CHECK_RC_OK(RTStrCopy(szPath, sizeof(szPath), InEmptyDir(RT_STR_TUPLE("no-such-dir" RTPATH_SLASH_STR "other-no-such-file")))); 2976 2977 RTTESTI_CHECK_RC(RTPathRename(InEmptyDir(RT_STR_TUPLE("no-such-dir" RTPATH_SLASH_STR "no-such-file")), szPath, 0), 2977 2978 FSPERF_VERR_PATH_NOT_FOUND); 2978 strcpy(szPath, InEmptyDir(RT_STR_TUPLE("other-no-such-file"))); 2979 2980 RTTESTI_CHECK_RC_OK(RTStrCopy(szPath, sizeof(szPath), InEmptyDir(RT_STR_TUPLE("other-no-such-file")))); 2979 2981 RTTESTI_CHECK_RC(RTPathRename(InDir(RT_STR_TUPLE("known-file" RTPATH_SLASH_STR "no-such-file")), szPath, 0), VERR_PATH_NOT_FOUND); 2980 2982 … … 2983 2985 RTFILE_O_CREATE_REPLACE | RTFILE_O_DENY_NONE | RTFILE_O_WRITE), VINF_SUCCESS); 2984 2986 RTTESTI_CHECK_RC(RTFileClose(hFile1), VINF_SUCCESS); 2985 strcat(strcpy(szPath, g_szDir), "-no-such-dir" RTPATH_SLASH_STR "file16");2987 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szPath, sizeof(szPath), g_szDir), sizeof(szPath), "-no-such-dir" RTPATH_SLASH_STR "file16")); 2986 2988 RTTESTI_CHECK_RC(RTPathRename(szPath, g_szDir, 0), FSPERF_VERR_PATH_NOT_FOUND); 2987 2989 RTTESTI_CHECK_RC(RTPathRename(g_szDir, szPath, 0), FSPERF_VERR_PATH_NOT_FOUND); 2988 2990 2989 2991 /* Shallow: */ 2990 strcat(strcpy(szPath, g_szDir), "-other");2992 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szPath, sizeof(szPath), g_szDir), sizeof(szPath), "-other")); 2991 2993 PROFILE_FN(RTPathRename(iIteration & 1 ? szPath : g_szDir, iIteration & 1 ? g_szDir : szPath, 0), g_nsTestRun, "RTPathRename"); 2992 2994 … … 2996 2998 RTTESTI_CHECK_RC(RTFileClose(hFile1), VINF_SUCCESS); 2997 2999 2998 strcat(strcpy(szPath, g_szDeepDir), "-other");3000 RTTESTI_CHECK_RC_OK(RTStrCat(RTStrCopy2(szPath, sizeof(szPath), g_szDeepDir), sizeof(szPath), "-other")); 2999 3001 PROFILE_FN(RTPathRename(iIteration & 1 ? szPath : g_szDeepDir, iIteration & 1 ? g_szDeepDir : szPath, 0), 3000 3002 g_nsTestRun, "RTPathRename/deep");
Note:
See TracChangeset
for help on using the changeset viewer.