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 2017/07/24 12:38:38 UTC

svn commit: r1802802 - /subversion/trunk/subversion/tests/cmdline/update_tests.py

Author: stsp
Date: Mon Jul 24 12:38:38 2017
New Revision: 1802802

URL: http://svn.apache.org/viewvc?rev=1802802&view=rev
Log:
Fix test fallout introduced in r1802797:

* subversion/tests/cmdline/update_tests.py
  (missing_tmp_update): Pass the new --vacuum-pristines option to svn cleanup.
   This test relies on the side-effect of re-creating .svn/tmp.
   Add a comment to the test that calls this out.

Modified:
    subversion/trunk/subversion/tests/cmdline/update_tests.py

Modified: subversion/trunk/subversion/tests/cmdline/update_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/update_tests.py?rev=1802802&r1=1802801&r2=1802802&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/update_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/update_tests.py Mon Jul 24 12:38:38 2017
@@ -6792,7 +6792,9 @@ def missing_tmp_update(sbox):
   svntest.actions.run_and_verify_svn(None, '.*Unable to create.*',
                                      'up', wc_dir, '--set-depth', 'infinity')
 
-  svntest.actions.run_and_verify_svn(None, [], 'cleanup', wc_dir)
+  # This re-creates .svn/tmp as a side-effect.
+  svntest.actions.run_and_verify_svn(None, [], 'cleanup',
+                                     '--vacuum-pristines', wc_dir)
 
   svntest.actions.run_and_verify_update(wc_dir, None, None, None, [], False,
                                         wc_dir, '--set-depth', 'infinity')