You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/08/30 15:48:18 UTC

svn commit: r990804 - /subversion/trunk/subversion/tests/cmdline/diff_tests.py

Author: dannas
Date: Mon Aug 30 13:48:18 2010
New Revision: 990804

URL: http://svn.apache.org/viewvc?rev=990804&view=rev
Log:
Follow-up to r990790.

Skip a diff test unless we're using ra_neon. For some reason,
ra_local and ra_svn does not call apply_textdelta() for copied
paths with no text changes while ra_neon does.

* subversion/tests/cmdline/diff_tests.py
  (test_list): Mark diff_backward_repos_wc_copy() with SkipUnless.

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

Modified: subversion/trunk/subversion/tests/cmdline/diff_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/diff_tests.py?rev=990804&r1=990803&r2=990804&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/diff_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/diff_tests.py Mon Aug 30 13:48:18 2010
@@ -33,6 +33,7 @@ import svntest
 
 # (abbreviation)
 Skip = svntest.testcase.Skip
+SkipUnless = svntest.testcase.SkipUnless
 XFail = svntest.testcase.XFail
 Item = svntest.wc.StateItem
 
@@ -3792,7 +3793,8 @@ test_list = [ None,
               XFail(diff_in_renamed_folder),
               diff_with_depth,
               diff_ignore_eolstyle_empty_lines,
-              XFail(diff_backward_repos_wc_copy),
+              SkipUnless(diff_backward_repos_wc_copy,
+                         svntest.main.is_ra_type_dav_neon),
               diff_summarize_xml,
               diff_file_depth_empty,
               diff_wrong_extension_type,