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 2012/07/06 00:32:17 UTC

svn commit: r1357978 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: rhuijben
Date: Thu Jul  5 22:32:17 2012
New Revision: 1357978

URL: http://svn.apache.org/viewvc?rev=1357978&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (svn_wc__db_op_delete): Following up on r1357961, disable the check
    to avoid breaking the testsuite.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1357978&r1=1357977&r2=1357978&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Thu Jul  5 22:32:17 2012
@@ -7301,6 +7301,8 @@ svn_wc__db_op_delete(svn_wc__db_t *db,
                                                     scratch_pool));
       VERIFY_USABLE_WCROOT(moved_to_wcroot);
 
+/* ### This breaks some tests. Needs more work here or on a higher
+       level
       if (strcmp(wcroot->abspath, moved_to_wcroot->abspath) != 0)
         return svn_error_createf(SVN_ERR_UNSUPPORTED_FEATURE, NULL,
                                  _("Cannot move '%s' to '%s' because they "
@@ -7308,7 +7310,7 @@ svn_wc__db_op_delete(svn_wc__db_t *db,
                                  svn_dirent_local_style(local_abspath,
                                                         scratch_pool),
                                  svn_dirent_local_style(moved_to_abspath,
-                                                        scratch_pool));
+                                                        scratch_pool)); */
     }
   else
     moved_to_relpath = NULL;