You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2010/12/07 12:27:03 UTC

svn commit: r1042977 - /subversion/trunk/subversion/tests/cmdline/authz_tests.py

Author: philip
Date: Tue Dec  7 11:27:03 2010
New Revision: 1042977

URL: http://svn.apache.org/viewvc?rev=1042977&view=rev
Log:
Remove WIMP from 2 tests that XPASS.

* subversion/tests/cmdline/authz_tests.py
  (wc_wc_copy_revert): Remove comment, this test is no longer redundant
   with op-depth since copy is once again node-by-node.
  (test_list): Remove WIMP from wc_wc_copy and wc_wc_copy_revert.

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

Modified: subversion/trunk/subversion/tests/cmdline/authz_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/authz_tests.py?rev=1042977&r1=1042976&r2=1042977&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/authz_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/authz_tests.py Tue Dec  7 11:27:03 2010
@@ -1020,9 +1020,6 @@ def wc_wc_copy_revert(sbox):
 
   wc_wc_copy(sbox)
 
-  # Fails with a "No write-lock" error, as does "rm --force", on a
-  # path under A2.  Multiple repeats fail on different paths until the
-  # command completes.  No longer applies with op_depth.
   svntest.actions.run_and_verify_svn(None, None, [],
                                      'revert', '--recursive', sbox.ospath('A2'))
   
@@ -1092,10 +1089,8 @@ test_list = [ None,
               Skip(authz_access_required_at_repo_root2,
                    svntest.main.is_ra_type_file),
               Skip(multiple_matches, svntest.main.is_ra_type_file),
-              Wimp("Needs op_depth", Skip(wc_wc_copy,
-                   svntest.main.is_ra_type_file)),
-              Wimp("Redundant with op_depth", Skip(wc_wc_copy_revert,
-                   svntest.main.is_ra_type_file)),
+              Skip(wc_wc_copy, svntest.main.is_ra_type_file),
+              Skip(wc_wc_copy_revert, svntest.main.is_ra_type_file),
               Skip(authz_recursive_ls,
                    svntest.main.is_ra_type_file),
              ]