[Updated] D10857: revlogv2: also test that local clone works
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jun 21 15:15:07 UTC 2021
Closed by commit rHGda3fb8c10caa: revlogv2: also test that local clone works (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D10857?vs=28627&id=28657
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D10857/new/
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, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210621/a8a768cc/attachment-0002.html>
More information about the Mercurial-patches
mailing list