You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2013/01/10 16:26:14 UTC

svn commit: r1431423 - /subversion/trunk/subversion/tests/cmdline/wc_tests.py

Author: brane
Date: Thu Jan 10 15:26:13 2013
New Revision: 1431423

URL: http://svn.apache.org/viewvc?rev=1431423&view=rev
Log:
Added XFAIL test for issue #4267 (cleanup not run on lock root).

* subversion/tests/cmdline/wc_tests.py (cleanup_below_wc_root): New test.

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

Modified: subversion/trunk/subversion/tests/cmdline/wc_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/wc_tests.py?rev=1431423&r1=1431422&r2=1431423&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/wc_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/wc_tests.py Thu Jan 10 15:26:13 2013
@@ -191,6 +191,16 @@ def status_with_missing_wc_db_and_maybe_
     "st", sbox.wc_dir)
 
 
+@Issue(4267)
+@XFail()
+def cleanup_below_wc_root(sbox):
+  """cleanup from directory below WC root"""
+
+  sbox.build(read_only = True)
+  svntest.actions.lock_admin_dir(sbox.ospath(""), True)
+  svntest.actions.run_and_verify_svn("Cleanup below wc root", None, [],
+                                     "cleanup", sbox.ospath("A"))
+
 ########################################################################
 # Run the tests
 
@@ -208,6 +218,7 @@ test_list = [ None,
               status_without_wc_db,
               status_without_wc_db_and_entries,
               status_with_missing_wc_db_and_maybe_valid_entries,
+              cleanup_below_wc_root,
              ]
 
 if __name__ == '__main__':