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/05/21 16:22:01 UTC

svn commit: r1341042 - /subversion/trunk/subversion/tests/libsvn_wc/wc-queries-test.c

Author: rhuijben
Date: Mon May 21 14:22:00 2012
New Revision: 1341042

URL: http://svn.apache.org/viewvc?rev=1341042&view=rev
Log:
Another attempt of fixing the linking/compilation of wc-queries-test.c for
sqlite amalgamation users.

* subversion/tests/libsvn_wc/wc-queries-test.c
  (includes): Add svn_private_config.h
  (test_parsable): Rename pool argument.

Modified:
    subversion/trunk/subversion/tests/libsvn_wc/wc-queries-test.c

Modified: subversion/trunk/subversion/tests/libsvn_wc/wc-queries-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/wc-queries-test.c?rev=1341042&r1=1341041&r2=1341042&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_wc/wc-queries-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_wc/wc-queries-test.c Mon May 21 14:22:00 2012
@@ -24,6 +24,8 @@
 #include "svn_pools.h"
 #include "svn_ctype.h"
 
+#include "svn_private_config.h"
+
 #include "../svn_test.h"
 
 #ifdef SVN_SQLITE_INLINE
@@ -111,12 +113,12 @@ create_memory_db(sqlite3 **db,
 
 /* Parse all normal queries */
 static svn_error_t *
-test_parsable(apr_pool_t *pool)
+test_parsable(apr_pool_t *scratch_pool)
 {
   sqlite3 *sdb;
   int i;
 
-  SVN_ERR(create_memory_db(&sdb, pool));
+  SVN_ERR(create_memory_db(&sdb, scratch_pool));
 
   for (i=0; i < STMT_SCHEMA_FIRST; i++)
     {