[Commented On] D10858: revlogv2: fix `hg verify` with revlog v2
baymax (Baymax, Your Personal Patch-care Companion)
phabricator at mercurial-scm.org
Tue Jun 15 14:26:11 UTC 2021
baymax added a comment.
baymax updated this revision to Diff 28580.
✅ refresh by Heptapod after a successful CI run (🐙 💚)
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D10858?vs=28535&id=28580
BRANCH
default
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D10858/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D10858
AFFECTED FILES
mercurial/revlog.py
tests/test-revlog-v2.t
CHANGE DETAILS
diff --git a/tests/test-revlog-v2.t b/tests/test-revlog-v2.t
--- a/tests/test-revlog-v2.t
+++ b/tests/test-revlog-v2.t
@@ -119,3 +119,21 @@
The two repository should be identical, this diff MUST be empty
$ cmp ../tip-new ../tip-cloned || diff -U8 ../tip-new ../tip-cloned
+
+
+hg verify should be happy
+-------------------------
+
+ $ hg verify
+ checking changesets
+ checking manifests
+ crosschecking files in changesets and manifests
+ checking files
+ checked 1 changesets with 1 changes to 1 files
+
+ $ hg verify -R ../cloned-repo
+ checking changesets
+ checking manifests
+ crosschecking files in changesets and manifests
+ checking files
+ checked 1 changesets with 1 changes to 1 files
diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -2923,8 +2923,15 @@
def files(self):
res = [self._indexfile]
- if not self._inline:
- res.append(self._datafile)
+ if self._docket_file is None:
+ if not self._inline:
+ res.append(self._datafile)
+ else:
+ res.append(self._docket_file)
+ if self._docket.data_end:
+ res.append(self._datafile)
+ if self._docket.sidedata_end:
+ res.append(self._sidedatafile)
return res
def emitrevisions(
To: marmoute, indygreg, #hg-reviewers
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210615/3e368878/attachment-0002.html>
More information about the Mercurial-patches
mailing list