Skip to content
Snippets Groups Projects
Commit da3fb8c1 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

revlogv2: also test that local clone works

This is now the case so lets add a test.

Differential Revision: https://phab.mercurial-scm.org/D10857
parent d3702566
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment