VirtualBox

Changeset 15806 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Jan 5, 2009 3:09:48 PM (16 years ago)
Author:
vboxsync
Message:

tstPath: style.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/testcase/tstPath.cpp

    r15756 r15806  
    9898        const char *pcszOutput;
    9999    }
    100     aRTPathAbsExTests[] =
     100    s_aRTPathAbsExTests[] =
    101101    {
    102102#if defined (RT_OS_OS2) || defined (RT_OS_WINDOWS)
     
    152152    };
    153153
    154     for (unsigned i = 0; i < RT_ELEMENTS(aRTPathAbsExTests); ++ i)
    155     {
    156         rc = RTPathAbsEx(aRTPathAbsExTests[i].pcszInputBase,
    157                          aRTPathAbsExTests[i].pcszInputPath,
     154    for (unsigned i = 0; i < RT_ELEMENTS(s_aRTPathAbsExTests); ++ i)
     155    {
     156        rc = RTPathAbsEx(s_aRTPathAbsExTests[i].pcszInputBase,
     157                         s_aRTPathAbsExTests[i].pcszInputPath,
    158158                         szPath, sizeof(szPath));
    159         if (rc != aRTPathAbsExTests[i].rc)
     159        if (rc != s_aRTPathAbsExTests[i].rc)
    160160        {
    161161            RTPrintf("tstPath: RTPathAbsEx unexpected result code!\n"
     
    165165                     "           rc: %Rrc\n"
    166166                     "  expected rc: %Rrc\n",
    167                      aRTPathAbsExTests[i].pcszInputBase,
    168                      aRTPathAbsExTests[i].pcszInputPath,
     167                     s_aRTPathAbsExTests[i].pcszInputBase,
     168                     s_aRTPathAbsExTests[i].pcszInputPath,
    169169                     szPath, rc,
    170                      aRTPathAbsExTests[i].rc);
     170                     s_aRTPathAbsExTests[i].rc);
    171171            cErrors++;
    172172            continue;
     
    175175        char szTmp[RTPATH_MAX];
    176176        char *pszExpected = NULL;
    177         if (aRTPathAbsExTests[i].pcszOutput != NULL)
     177        if (s_aRTPathAbsExTests[i].pcszOutput != NULL)
    178178        {
    179             if (aRTPathAbsExTests[i].pcszOutput[0] == '%')
     179            if (s_aRTPathAbsExTests[i].pcszOutput[0] == '%')
    180180            {
     181                /** @todo Use RTPathGetCurrent(). */
    181182                if (getcwd(szTmp, sizeof(szTmp)) == NULL)
    182183                {
     
    188189                pszExpected = szTmp;
    189190
    190                 if (aRTPathAbsExTests[i].pcszOutput[1] == 'p')
     191                if (s_aRTPathAbsExTests[i].pcszOutput[1] == 'p')
    191192                {
    192193                    size_t cch = strlen(szTmp);
    193                     if (cch + strlen (aRTPathAbsExTests[i].pcszOutput) - 2 <= sizeof(szTmp))
    194                         strcpy (szTmp + cch, aRTPathAbsExTests[i].pcszOutput + 2);
     194                    if (cch + strlen(s_aRTPathAbsExTests[i].pcszOutput) - 2 <= sizeof(szTmp))
     195                        strcpy(szTmp + cch, s_aRTPathAbsExTests[i].pcszOutput + 2);
    195196                }
    196 #if defined (RT_OS_OS2) || defined (RT_OS_WINDOWS)
    197                 else if (aRTPathAbsExTests[i].pcszOutput[1] == 'd')
     197#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
     198                else if (s_aRTPathAbsExTests[i].pcszOutput[1] == 'd')
    198199                {
    199                     if (2 + strlen (aRTPathAbsExTests[i].pcszOutput) - 2 <= sizeof(szTmp))
    200                         strcpy (szTmp + 2, aRTPathAbsExTests[i].pcszOutput + 2);
     200                    if (2 + strlen(s_aRTPathAbsExTests[i].pcszOutput) - 2 <= sizeof(szTmp))
     201                        strcpy(szTmp + 2, s_aRTPathAbsExTests[i].pcszOutput + 2);
    201202                }
    202203#endif
     
    204205            else
    205206            {
    206                 strcpy(szTmp, aRTPathAbsExTests[i].pcszOutput);
     207                strcpy(szTmp, s_aRTPathAbsExTests[i].pcszOutput);
    207208                pszExpected = szTmp;
    208209            }
     
    215216                         "       output: '%s'\n"
    216217                         "     expected: '%s'\n",
    217                          aRTPathAbsExTests[i].pcszInputBase,
    218                          aRTPathAbsExTests[i].pcszInputPath,
     218                         s_aRTPathAbsExTests[i].pcszInputBase,
     219                         s_aRTPathAbsExTests[i].pcszInputPath,
    219220                         szPath,
    220                          aRTPathAbsExTests[i].pcszOutput);
     221                         s_aRTPathAbsExTests[i].pcszOutput);
    221222                cErrors++;
    222223            }
     
    228229     */
    229230    RTPrintf("tstPath: RTPathStripFilename...\n");
    230     static const char *apszStripFilenameTests[] =
     231    static const char *s_apszStripFilenameTests[] =
    231232    {
    232233        "/usr/include///",              "/usr/include//",
     
    242243#endif
    243244    };
    244     for (unsigned i = 0; i < RT_ELEMENTS(apszStripFilenameTests); i += 2)
    245     {
    246         const char *pszInput  = apszStripFilenameTests[i];
    247         const char *pszExpect = apszStripFilenameTests[i + 1];
     245    for (unsigned i = 0; i < RT_ELEMENTS(s_apszStripFilenameTests); i += 2)
     246    {
     247        const char *pszInput  = s_apszStripFilenameTests[i];
     248        const char *pszExpect = s_apszStripFilenameTests[i + 1];
    248249        char szPath[RTPATH_MAX];
    249250        strcpy(szPath, pszInput);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette