Author: rhuijben
Date: Tue May 17 10:57:38 2011
New Revision: 1104125
URL: http://svn.apache.org/viewvc?rev=1104125&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
(op_delete_txn): Remove SVN_DBG() call.
Modified:
subversion/trunk/subversion/libsvn_wc/wc_db.c
subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.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=1104125&r1=1104124&r2=1104125&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Tue May 17 10:57:38 2011
@@ -6243,7 +6243,6 @@ op_delete_txn(void *baton,
svn_boolean_t have_base;
svn_boolean_t have_work;
svn_wc__db_status_t below_status;
- SVN_DBG(("Deleting %s\n", local_relpath));
/* Use STMT_SELECT_NODE_INFO directly instead of read_info plus
info_below_working */
SVN_ERR(info_below_working(&have_base, &have_work, &below_status,
Modified: subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c?rev=1104125&r1=1104124&r2=1104125&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c Tue May 17
10:57:38 2011
@@ -3418,6 +3418,18 @@ test_copy_of_deleted(const svn_test_opts
return SVN_NO_ERROR;
}
+static svn_error_t *
+test_case_rename(const svn_test_opts_t *opts, apr_pool_t *pool)
+{
+ svn_test__sandbox_t b;
+
+ SVN_ERR(svn_test__sandbox_create(&b, "case_rename", opts, pool));
+ SVN_ERR(add_and_commit_greek_tree(&b));
+
+ SVN_ERR(wc_move(&b, "A", "a"));
+
+ return svn_error_create(APR_EOF, NULL, NULL);
+}
/* ---------------------------------------------------------------------- */
/* The list of test functions */
@@ -3468,5 +3480,7 @@ struct svn_test_descriptor_t test_funcs[
"test_shadowed_update"),
SVN_TEST_OPTS_PASS(test_copy_of_deleted,
"test_copy_of_deleted (issue #3873)"),
+ SVN_TEST_OPTS_XFAIL(test_case_rename,
+ "test_case_rename on case (in)sensitive system"),
SVN_TEST_NULL
};