You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/09/28 04:34:46 UTC

svn commit: r1527144 - /subversion/trunk/subversion/tests/libsvn_subr/root-pools-test.c

Author: stefan2
Date: Sat Sep 28 02:34:46 2013
New Revision: 1527144

URL: http://svn.apache.org/r1527144
Log:
Fix APR_INCOMPLETE error in root-pools-test under Windows.

* subversion/tests/libsvn_subr/root-pools-test.c
  (thread_func): explicitly end thread

Modified:
    subversion/trunk/subversion/tests/libsvn_subr/root-pools-test.c

Modified: subversion/trunk/subversion/tests/libsvn_subr/root-pools-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/root-pools-test.c?rev=1527144&r1=1527143&r2=1527144&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/root-pools-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/root-pools-test.c Sat Sep 28 02:34:46 2013
@@ -65,6 +65,7 @@ APR_THREAD_FUNC thread_func(apr_thread_t
   apr_thread_yield();
 
   use_root_pool(data);
+  apr_thread_exit(tid, APR_SUCCESS);
 
   return NULL;
 }