You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by sv...@apache.org on 2013/05/22 06:02:16 UTC

svn commit: r1485053 - in /subversion/branches/1.8.x: ./ STATUS subversion/tests/libsvn_wc/db-test.c subversion/tests/libsvn_wc/entries-compat.c

Author: svn-role
Date: Wed May 22 04:02:16 2013
New Revision: 1485053

URL: http://svn.apache.org/r1485053
Log:
Merge r1482829 from trunk:

 * r1482829
   Reduce diskspace needed by our testsuite when using cleanup mode.
   Justification:
     A 256 MB ramdrive should be more than enough for running the
     tests in parallel mode, but currently isn't.
   Votes:
     +1: rhuijben, pburba, breser

Modified:
    subversion/branches/1.8.x/   (props changed)
    subversion/branches/1.8.x/STATUS
    subversion/branches/1.8.x/subversion/tests/libsvn_wc/db-test.c
    subversion/branches/1.8.x/subversion/tests/libsvn_wc/entries-compat.c

Propchange: subversion/branches/1.8.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1482829

Modified: subversion/branches/1.8.x/STATUS
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1485053&r1=1485052&r2=1485053&view=diff
==============================================================================
--- subversion/branches/1.8.x/STATUS (original)
+++ subversion/branches/1.8.x/STATUS Wed May 22 04:02:16 2013
@@ -143,14 +143,6 @@ Approved changes:
 # blocking issues.  If in doubt see this link for details:
 # http://subversion.apache.org/docs/community-guide/releasing.html#release-stabilization
 
- * r1482829
-   Reduce diskspace needed by our testsuite when using cleanup mode.
-   Justification:
-     A 256 MB ramdrive should be more than enough for running the
-     tests in parallel mode, but currently isn't.
-   Votes:
-     +1: rhuijben, pburba, breser
-
  * r1483116
    Retry removing test temporary directories when running as deferred deletes
    using a short delay.

Modified: subversion/branches/1.8.x/subversion/tests/libsvn_wc/db-test.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/tests/libsvn_wc/db-test.c?rev=1485053&r1=1485052&r2=1485053&view=diff
==============================================================================
--- subversion/branches/1.8.x/subversion/tests/libsvn_wc/db-test.c (original)
+++ subversion/branches/1.8.x/subversion/tests/libsvn_wc/db-test.c Wed May 22 04:02:16 2013
@@ -343,6 +343,8 @@ create_open(svn_wc__db_t **db,
   SVN_ERR(svn_wc__db_open(db, NULL, FALSE, TRUE, pool, pool));
   SVN_ERR(svn_test__create_fake_wc(*local_abspath, TESTING_DATA, pool, pool));
 
+  svn_test_add_dir_cleanup(*local_abspath);
+
   return SVN_NO_ERROR;
 }
 

Modified: subversion/branches/1.8.x/subversion/tests/libsvn_wc/entries-compat.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/tests/libsvn_wc/entries-compat.c?rev=1485053&r1=1485052&r2=1485053&view=diff
==============================================================================
--- subversion/branches/1.8.x/subversion/tests/libsvn_wc/entries-compat.c (original)
+++ subversion/branches/1.8.x/subversion/tests/libsvn_wc/entries-compat.c Wed May 22 04:02:16 2013
@@ -336,6 +336,8 @@ create_open(svn_wc__db_t **db,
                           TRUE /* enforce_empty_wq */,
                           pool, pool));
 
+  svn_test_add_dir_cleanup(*local_abspath);
+
   return SVN_NO_ERROR;
 }