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 2013/10/31 13:38:17 UTC

svn commit: r1537470 - /subversion/trunk/subversion/tests/libsvn_repos/repos-test.c

Author: rhuijben
Date: Thu Oct 31 12:38:17 2013
New Revision: 1537470

URL: http://svn.apache.org/r1537470
Log:
* subversion/tests/libsvn_repos/repos-test.c
  (test_config_pool): Use a proper test directory to avoid trying to atomically
    flush on my network source drive, which sometimes fails.

Modified:
    subversion/trunk/subversion/tests/libsvn_repos/repos-test.c

Modified: subversion/trunk/subversion/tests/libsvn_repos/repos-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_repos/repos-test.c?rev=1537470&r1=1537469&r2=1537470&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_repos/repos-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_repos/repos-test.c Thu Oct 31 12:38:17 2013
@@ -3324,7 +3324,9 @@ test_config_pool(const svn_test_opts_t *
   apr_pool_t *config_pool_pool;
   apr_pool_t *subpool = svn_pool_create(pool);
 
-  const char *wrk_dir = opts->srcdir; /* svn_test_data_path("", pool);*/
+  const char *wrk_dir = svn_test_data_path("config_pool", pool);
+
+  SVN_ERR(svn_io_make_dir_recursively(wrk_dir, pool));
 
   /* read all config info through a single config pool and we want to be
      able to control its lifetime.  The latter requires a separate pool. */