Bert,
what's the difference between upper and lower case drive letters on
Windows? I thought Windows' use of drive letters was case insensitve?
On Wed, Sep 30, 2009 at 10:08 AM, Bert Huijben <rhuijben_at_sharpsvn.net> wrote:
> Author: rhuijben
> Date: Wed Sep 30 01:08:37 2009
> New Revision: 39690
>
> Log:
> Make svn_dirent_is_absolute() only return true when
> svn_dirent_get_absolute() called on that same path returns the same value.
> This resolves an issue with lower cased drive letters in Windows, that
> where found.
>
> Found by: rdonch
>
> * subversion/libsvn_subr/dirent_uri.c
> Â (svn_dirent_is_absolute): Don't assume a lowercase drive letter is absolute.
>
> * subversion/tests/libsvn_subr/dirent_uri-test.c
> Â (test_dirent_is_absolute): Add two test values, verifying the new behavior and
> Â Â add verification on svn_dirent_get_absolute() value being the same for absolute
> Â Â paths.
> Â (test_dirent_get_absolute): Add three test values.
>
> Modified:
> Â trunk/subversion/libsvn_subr/dirent_uri.c
> Â trunk/subversion/tests/libsvn_subr/dirent_uri-test.c
>
> Modified: trunk/subversion/libsvn_subr/dirent_uri.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_subr/dirent_uri.c?pathrev=39690&r1=39689&r2=39690
> ==============================================================================
> --- trunk/subversion/libsvn_subr/dirent_uri.c  Wed Sep 30 00:21:55 2009     (r39689)
> +++ trunk/subversion/libsvn_subr/dirent_uri.c  Wed Sep 30 01:08:37 2009     (r39690)
> @@ -1499,8 +1499,7 @@ svn_dirent_is_absolute(const char *diren
> Â /* On Windows, dirent is also absolute when it starts with 'H:' or 'H:/'
> Â Â Â where 'H' is any letter. */
> Â #if defined(WIN32) || defined(__CYGWIN__)
> - Â if (((dirent[0] >= 'A' && dirent[0] <= 'Z') ||
> - Â Â Â (dirent[0] >= 'a' && dirent[0] <= 'z')) &&
> + Â if (((dirent[0] >= 'A' && dirent[0] <= 'Z')) &&
> Â Â Â (dirent[1] == ':') && (dirent[2] == '/'))
> Â Â Â return TRUE;
> Â #endif /* WIN32 or Cygwin */
>
> Modified: trunk/subversion/tests/libsvn_subr/dirent_uri-test.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c?pathrev=39690&r1=39689&r2=39690
> ==============================================================================
> --- trunk/subversion/tests/libsvn_subr/dirent_uri-test.c     Wed Sep 30 00:21:55 2009     (r39689)
> +++ trunk/subversion/tests/libsvn_subr/dirent_uri-test.c     Wed Sep 30 01:08:37 2009     (r39690)
> @@ -151,6 +151,8 @@ test_dirent_is_absolute(apr_pool_t *pool
> Â Â { "/", Â Â Â Â Â Â FALSE },
> Â Â { "X:/foo", Â Â Â Â TRUE },
> Â Â { "X:/", Â Â Â Â Â TRUE },
> + Â Â { "x:/", Â Â Â Â Â FALSE },
> + Â Â { "x:/foo", Â Â Â Â FALSE },
It just seems wrong to me to handle dirents differently on Windows
when only their case differs.
> Â Â { "//srv/shr", Â Â TRUE },
> Â Â { "//srv/shr/fld", TRUE },
> Â Â { "//srv/s r", Â Â TRUE },
> @@ -178,6 +180,25 @@ test_dirent_is_absolute(apr_pool_t *pool
> Â Â Â Â Â Â "svn_dirent_is_absolute (%s) returned %s instead of %s",
> Â Â Â Â Â Â tests[i].path, retval ? "TRUE" : "FALSE",
> Â Â Â Â Â Â tests[i].result ? "TRUE" : "FALSE");
> +
> + Â Â Â /* Don't get absolute paths for the UNC paths, because this will
> + Â Â Â Â always fail */
> + Â Â Â if (tests[i].result &&
> + Â Â Â Â Â strncmp(tests[i].path, "//", 2) != 0)
> + Â Â Â Â {
> + Â Â Â Â Â const char *abspath;
> +
> + Â Â Â Â Â SVN_ERR(svn_dirent_get_absolute(&abspath, tests[i].path, pool));
> +
> + Â Â Â Â Â if (tests[i].result != (strcmp(tests[i].path, abspath) == 0))
> + Â Â Â Â Â Â return svn_error_createf(
> + Â Â Â Â Â Â Â Â Â Â Â Â Â SVN_ERR_TEST_FAILED,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â NULL,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â "svn_dirent_is_absolute(%s) returned TRUE, but "
> + Â Â Â Â Â Â Â Â Â Â Â Â Â "svn_dirent_get_absolute() returned \"%s\"",
> + Â Â Â Â Â Â Â Â Â Â Â Â Â tests[i].path,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â abspath);
> + Â Â Â Â }
This part doesn't seem really related to the rest of the patch.
Lieven
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2401914
Received on 2009-09-30 10:28:49 CEST