Author: rhuijben
Date: Thu Jun 16 11:40:56 2011
New Revision: 1136382

URL: http://svn.apache.org/viewvc?rev=1136382&view=rev
Log:
* subversion/tests/libsvn_subr/dirent_uri-test.c
  (test_dirent_skip_ancestor): Following up on r1136379, fix expectations for
    platforms that use dos paths (Windows, OS/2). This doesn't unbreak the
    test as one case is still broken after r1136379.

Modified:
    subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c

Modified: subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c?rev=1136382&r1=1136381&r2=1136382&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c Thu Jun 16 
11:40:56 2011
@@ -1490,14 +1490,14 @@ test_dirent_skip_ancestor(apr_pool_t *po
     { "/",               "bar/bla",         NULL },
 #ifdef SVN_USE_DOS_PATHS
     { "A:/foo",          "A:/foo/bar",      "bar"},
-    { "A:/foo",          "A:/foot",         "A:/foot"},
+    { "A:/foo",          "A:/foot",         NULL},
     { "A:/",             "A:/foo",          "foo"},
     { "A:",              "A:foo",           "foo"},
-    { "A:",              "A:/",             "A:/"},
-    { "//srv/share",     "//vrs/share",     "//vrs/share"},
-    { "//srv",           "//srv/share",     "//srv/share"},
+    { "A:",              "A:/",             NULL},
+    { "//srv/share",     "//vrs/share",     NULL},
+    { "//srv",           "//srv/share",     NULL},
     { "//srv/share",     "//srv/share/foo", "foo"},
-    { "/",               "//srv/share",     "//srv/share"},
+    { "/",               "//srv/share",     NULL},
 #endif
   };
 


Reply via email to