You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ar...@apache.org on 2010/09/21 17:59:31 UTC

svn commit: r999474 - /subversion/trunk/subversion/tests/cmdline/svnrdump_tests.py

Author: artagnon
Date: Tue Sep 21 15:59:31 2010
New Revision: 999474

URL: http://svn.apache.org/viewvc?rev=999474&view=rev
Log:
svnrdump: Mark tests that fail conditionally on ra_dav as WIP
for the buildbot.

* subversion/tests/cmdline/svnrdump_tests.py
  (test_list): dir_prop_change_load, url_encoding_dump,
  move_and_modify_in_the_same_revision_load pass on ra_local but FAIL
  on ra_dav. copy_revprops_load XPASS'ed on ra_dav. Fix these problems
  appropriately to reflect the current status accurately.

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

Modified: subversion/trunk/subversion/tests/cmdline/svnrdump_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svnrdump_tests.py?rev=999474&r1=999473&r2=999474&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svnrdump_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svnrdump_tests.py Tue Sep 21 15:59:31 2010
@@ -270,17 +270,18 @@ test_list = [ None,
               tag_empty_trunk_dump,
               tag_empty_trunk_load,
               dir_prop_change_dump,
-              dir_prop_change_load,
+              Wimp("TODO", dir_prop_change_load, svntest.main.is_ra_type_dav),
               copy_parent_modify_prop_dump,
               copy_parent_modify_prop_load,
-              url_encoding_dump,
+              Wimp("TODO", url_encoding_dump, svntest.main.is_ra_type_dav),
               url_encoding_load,
               copy_revprops_dump,
-              Wimp("TODO", copy_revprops_load),
+              Wimp("TODO", copy_revprops_load, svntest.main.is_ra_type_file),
               no_author_dump,
               no_author_load,
               Wimp("TODO", move_and_modify_in_the_same_revision_dump),
-              Wimp("TODO", move_and_modify_in_the_same_revision_load),
+              Wimp("TODO", move_and_modify_in_the_same_revision_load,
+                   svntest.main.is_ra_type_file),
              ]
 
 if __name__ == '__main__':