You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2012/03/12 12:11:07 UTC

svn commit: r1299627 - /subversion/trunk/subversion/tests/libsvn_client/client-test.c

Author: julianfoad
Date: Mon Mar 12 11:11:07 2012
New Revision: 1299627

URL: http://svn.apache.org/viewvc?rev=1299627&view=rev
Log:
* subversion/tests/libsvn_client/client-test.c
  (test_copy_crash, test_youngest_common_ancestor): Add missing SVN_ERR()
    around svn_client_create_context().

Modified:
    subversion/trunk/subversion/tests/libsvn_client/client-test.c

Modified: subversion/trunk/subversion/tests/libsvn_client/client-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_client/client-test.c?rev=1299627&r1=1299626&r2=1299627&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_client/client-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_client/client-test.c Mon Mar 12 11:11:07 2012
@@ -572,7 +572,7 @@ test_copy_crash(const svn_test_opts_t *o
   /* Create a filesytem and repository containing the Greek tree. */
   SVN_ERR(create_greek_repos(&repos_url, "test-copy-crash", opts, pool));
 
-  svn_client_create_context(&ctx, pool);
+  SVN_ERR(svn_client_create_context(&ctx, pool));
 
   rev.kind = svn_opt_revision_head;
   dest = svn_path_url_add_component2(repos_url, "A/E", pool);
@@ -668,7 +668,7 @@ test_youngest_common_ancestor(const svn_
   /* Create a filesytem and repository containing the Greek tree. */
   SVN_ERR(create_greek_repos(&repos_url, "test-youngest-common-ancestor", opts, pool));
 
-  svn_client_create_context(&ctx, pool);
+  SVN_ERR(svn_client_create_context(&ctx, pool));
 
   /* Copy a file into dir 'A', keeping its own basename. */
   sources = apr_array_make(pool, 1, sizeof(svn_client_copy_source_t *));