You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2006/07/24 05:43:26 UTC

svn commit: r424893 - /apr/apr/trunk/test/testnames.c

Author: wrowe
Date: Sun Jul 23 20:43:25 2006
New Revision: 424893

URL: http://svn.apache.org/viewvc?rev=424893&view=rev
Log:

  My revision should have confirmed ../../.. -> ../../../
  since the truename function decorates 'directories' with '/'.

Modified:
    apr/apr/trunk/test/testnames.c

Modified: apr/apr/trunk/test/testnames.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/testnames.c?rev=424893&r1=424892&r2=424893&view=diff
==============================================================================
--- apr/apr/trunk/test/testnames.c (original)
+++ apr/apr/trunk/test/testnames.c Sun Jul 23 20:43:25 2006
@@ -100,7 +100,7 @@
                             "../../..", APR_FILEPATH_TRUENAME, p);
     ABTS_PTR_NOTNULL(tc, dstpath);
     ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
-    ABTS_STR_EQUAL(tc, "../../..", dstpath);
+    ABTS_STR_EQUAL(tc, "../../../", dstpath);
 
     rv = apr_filepath_merge(&dstpath, "", 
                             "../../../", APR_FILEPATH_TRUENAME, p);