Author: rhuijben
Date: Thu Dec 20 17:32:35 2012
New Revision: 1424599
URL: http://svn.apache.org/viewvc?rev=1424599&view=rev
Log:
* subversion/tests/libsvn_wc/utils.c
(sbox_wc_commit): Make this function commit file externals by default even
though no released api does this by default. (Fixes op-depth test)
Modified:
subversion/trunk/subversion/tests/libsvn_wc/utils.c
Modified: subversion/trunk/subversion/tests/libsvn_wc/utils.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/utils.c?rev=1424599&r1=1424598&r2=1424599&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_wc/utils.c (original)
+++ subversion/trunk/subversion/tests/libsvn_wc/utils.c Thu Dec 20 17:32:35 2012
@@ -294,8 +294,12 @@ sbox_wc_commit(svn_test__sandbox_t *b, c
APR_ARRAY_PUSH(targets, const char *) = sbox_wc_path(b, path);
SVN_ERR(svn_client_create_context2(&ctx, NULL, b->pool));
- return svn_client_commit5(targets, svn_depth_infinity,
- FALSE, FALSE, TRUE, /* keep locks/cl's/use_ops*/
+ return svn_client_commit6(targets, svn_depth_infinity,
+ FALSE /* keep_locks */,
+ FALSE /* keep_changelist */,
+ TRUE /* commit_as_operations */,
+ TRUE /* include_file_externals */,
+ FALSE /* include_dir_externals */,
NULL, NULL, NULL, NULL, ctx, b->pool);
}