[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Fix regression introduced in r1075802

From: Daniel Becroft <djcbecroft_at_gmail.com>
Date: Tue, 15 Mar 2011 07:33:06 +1000

Hi,

Below is a patch that fixes the regression introduced in r1075802. THe
thread related to this regress can
be found here: http://svn.haxx.se/dev/archive-2011-03/0145.shtml.

Cheers,
Daniel B.

[[[
Fix regression introduced in r1075802, where conflict files were created
during
a dry-run merge.

* subversion/libsvn_wc/merge.c
 (merge_binary_file): Bail with conflict before running callback for a
dry-run
   merge.

* subversion/tests/cmdline/merge_tests.py
 (dry_run_merge_conflicting_binary): Remove XFail decorator.
]]]

Index: subversion/tests/cmdline/merge_tests.py
===================================================================
--- subversion/tests/cmdline/merge_tests.py (revision 1081552)
+++ subversion/tests/cmdline/merge_tests.py (working copy)
@@ -16580,7 +16580,6 @@ def merge_change_to_file_with_executable(sbox):
   if not os.access(beta_path, os.X_OK):
     raise svntest.Failure("beta is not marked as executable after commit")

-_at_XFail()
 def dry_run_merge_conflicting_binary(sbox):
   "dry run shouldn't make conflict resoln files"

Index: subversion/libsvn_wc/merge.c
===================================================================
--- subversion/libsvn_wc/merge.c (revision 1081552)
+++ subversion/libsvn_wc/merge.c (working copy)
@@ -1144,6 +1144,11 @@ merge_binary_file(svn_skel_t **work_items,
       *merge_outcome = svn_wc_merge_merged;
       return SVN_NO_ERROR;
     }
+ else if (dry_run)
+ {
+ *merge_outcome = svn_wc_merge_conflict;
+ return SVN_NO_ERROR;
+ }

   /* Give the conflict resolution callback a chance to clean
      up the conflict before we mark the file 'conflicted' */
Received on 2011-03-14 22:33:58 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.