filemerge: move check for identical sides out of filemerge()
`filemerge.filemerge()` returns `None` if no merge was necessary
because the two sides were identical. I don't think it should be that
function's responsibility to handle that case; we should ideally not
even call `filemerge.filemerge()` if the two inputs identical. This
patch therefore moves the check out to the caller (`mergestate.py`).
The largefiles test changed because we now notice that the two sides
made the same change, so we don't consider it a merge. Also note that
the new message better matches the line above it in the test output.
Differential Revision: https://phab.mercurial-scm.org/D12154
--- a/mercurial/filemerge.py Mon Feb 07 20:12:09 2022 -0800
+++ b/mercurial/filemerge.py Mon Feb 07 22:54:38 2022 -0800
@@ -989,10 +989,6 @@
Returns whether the merge is complete, the return value of the merge, and
a boolean indicating whether the file was deleted from disk."""
-
- if not fco.cmp(fcd): # files identical?
- return None, False
-
ui = repo.ui
fd = fcd.path()
uipathfn = scmutil.getuipathfn(repo)
--- a/mercurial/mergestate.py Mon Feb 07 20:12:09 2022 -0800
+++ b/mercurial/mergestate.py Mon Feb 07 22:54:38 2022 -0800
@@ -421,6 +421,14 @@
self._restore_backup(wctx[dfile], localkey, flags)
else:
wctx[dfile].remove(ignoremissing=True)
+
+ if not fco.cmp(fcd): # files identical?
+ # If return value of merge is None, then there are no real conflict
+ del self._state[dfile]
+ self._results[dfile] = None, None
+ self._dirty = True
+ return None
+
merge_ret, deleted = filemerge.filemerge(
self._repo,
wctx,
@@ -431,12 +439,6 @@
fca,
labels=self._labels,
)
- if merge_ret is None:
- # If return value of merge is None, then there are no real conflict
- del self._state[dfile]
- self._results[dfile] = None, None
- self._dirty = True
- return None
if not merge_ret:
self.mark(dfile, MERGE_RECORD_RESOLVED)
--- a/tests/test-largefiles-misc.t Mon Feb 07 20:12:09 2022 -0800
+++ b/tests/test-largefiles-misc.t Mon Feb 07 22:54:38 2022 -0800
@@ -962,7 +962,7 @@
what do you want to do? l
getting changed largefiles
1 largefiles updated, 0 removed
- 0 files updated, 4 files merged, 0 files removed, 0 files unresolved
+ 1 files updated, 3 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ cat f-different
1