You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2010/02/04 19:06:09 UTC

svn commit: r906587 - /subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py

Author: julianfoad
Date: Thu Feb  4 18:06:08 2010
New Revision: 906587

URL: http://svn.apache.org/viewvc?rev=906587&view=rev
Log:
Skip a new test that relies on FSFS if we're testing with BDB. This is a
follow-up to r904594 (issue #3441) which added the test.

* subversion/tests/cmdline/svnadmin_tests.py
  (test_list): Skip verify_with_invalid_revprops() unless using FSFS.

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

Modified: subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py?rev=906587&r1=906586&r2=906587&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py Thu Feb  4 18:06:08 2010
@@ -984,7 +984,8 @@
               SkipUnless(fsfs_recover_handle_missing_revs_or_revprops_file,
                          svntest.main.is_fs_type_fsfs),
               create_in_repo_subdir,
-              verify_with_invalid_revprops,
+              SkipUnless(verify_with_invalid_revprops,
+                         svntest.main.is_fs_type_fsfs),
              ]
 
 if __name__ == '__main__':