[Request] [+- ] D10857: revlogv2: also test that local clone works
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Wed Jun 9 14:39:08 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is now the case so lets add a test.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10857
AFFECTED FILES
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
@@ -18,8 +18,8 @@
> revlogv2 = enable-unstable-format-and-corrupt-my-data
> EOF
- $ hg init empty-repo
- $ cd empty-repo
+ $ hg init new-repo
+ $ cd new-repo
$ cat .hg/requires
dotencode
exp-dirstate-v2 (dirstate-v2 !)
@@ -94,3 +94,28 @@
.hg/store/00manifest-43c37dde.dat
.hg/store/00manifest-e2c9362a.sda
.hg/store/00manifest.i
+
+Local clone works
+-----------------
+
+ $ hg clone . ../cloned-repo
+ updating to branch default
+ 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+ $ hg tip | tee ../tip-new
+ changeset: 0:96ee1d7354c4
+ tag: tip
+ user: test
+ date: Thu Jan 01 00:00:00 1970 +0000
+ summary: initial
+
+ $ hg tip -R ../cloned-repo | tee ../tip-cloned
+ changeset: 0:96ee1d7354c4
+ tag: tip
+ user: test
+ date: Thu Jan 01 00:00:00 1970 +0000
+ summary: initial
+
+
+The two repository should be identical, this diff MUST be empty
+
+ $ cmp ../tip-new ../tip-cloned || diff -U8 ../tip-new ../tip-cloned
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210609/79a6ec25/attachment-0001.html>
More information about the Mercurial-patches
mailing list