You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2015/07/22 15:16:55 UTC

svn commit: r1692270 - /subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c

Author: rhuijben
Date: Wed Jul 22 13:16:54 2015
New Revision: 1692270

URL: http://svn.apache.org/r1692270
Log:
Following up on r1692259 and r1692264 fix another !Windows assumption
in a regression test.

* subversion/tests/libsvn_subr/dirent_uri-test.c
  (test_dirent_from_file_url): Don't expect the '\' to be handled as on Windows
    on all platforms.

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=1692270&r1=1692269&r2=1692270&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/dirent_uri-test.c Wed Jul 22 13:16:54 2015
@@ -2369,7 +2369,7 @@ test_dirent_from_file_url(apr_pool_t *po
     { "file:///A%7C%5Cdir%5Cfile", "/A|\\dir\\file" },
     { "file:///A:%5Cdir",          "/A:\\dir" },
     { "file:///A:%5Cdir%5Cfile",   "/A:\\dir\\file" },
-    { "file://localhost/A:%5Cfile","/A|/file" },
+    { "file://localhost/A:%5Cfile","/A|\\file" },
     { "file://localhost/A:file",   "/A:file" }
 #endif
   };