Mercurial > hg
annotate tests/test-strip-cross.t @ 42619:20d0e59be79b
tests: show the files fields of changelogs for many merges
I don't think there's coverage for many of the subtle cases, and I
found it hard to understand what the code is doing by reading it. The
test takes 40s to run on a laptop, or 9s with --chg.
I have yet to find a description of what the files field is supposed
to be for merges. I thought it could be one of:
1. the files added/modified/removed relative to p1 (wouldn't seem
useful, but `hg diff -c -r mergerev` has this behavior)
2. the files with filelog nodes not in either parent (i.e., what is
needed to create a bundle out of a commit)
3. the files added/removed/modified files by merge itself [1]
It's clearly not 1, because file contents merges are symmetric. It's
clearly not 2 because removed files and exec bit changes are
listed. It's also not 3 but I think it's intended to be 3 and the
differences are bugs.
Assuming 3, the test shows that, for merges, the list of files both
overapproximates and underapproximates. All the cases involve file
changes not in the filelog but in the manifest (existence of file
at revision, exec bit and file vs symlink).
I didn't look at all underapproximations, but they looked minor. The
two overapproximations are problematic though because they both cause
potentially long lists of files when merging cleanly.
[1] even what it means for the merge commit itself to change a file is
not completely trivial. A file in the merge being the same as in one
of the parent is too lax as it would consider that merges change
nothing when they revert all the changes done on one side. The
criteria used in the test and in the next commit for "merge didn't
touch a file" is:
- the parents and the merge all have the same file
- or, one parent didn't touch the file and the other parent contains
the same file as the merge
Differential Revision: https://phab.mercurial-scm.org/D6612
author | Valentin Gatien-Baron <valentin.gatienbaron@gmail.com> |
---|---|
date | Tue, 02 Jul 2019 12:55:51 -0400 |
parents | f1186c292d03 |
children | f78f7448a969 |
rev | line source |
---|---|
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
1 test stripping of filelogs where the linkrev doesn't always increase |
5909
f45f7390c1c5
strip: calculate list of extra nodes to save and pass it to changegroupsubset
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
diff
changeset
|
2 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
3 $ echo '[extensions]' >> $HGRCPATH |
20117
aa9385f983fa
tests: don't load unnecessary graphlog extension
Martin Geisler <martin@geisler.net>
parents:
20115
diff
changeset
|
4 $ echo 'strip =' >> $HGRCPATH |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
5 $ hg init orig |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
6 $ cd orig |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
7 $ commit() |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
8 > { |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
9 > hg up -qC null |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
10 > count=1 |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
11 > for i in "$@"; do |
12537
5df8ef0f3f51
tests: fix tabs/indentation in test-strip-cross.t
Adrian Buehlmann <adrian@cadifra.com>
parents:
12492
diff
changeset
|
12 > for f in $i; do |
5df8ef0f3f51
tests: fix tabs/indentation in test-strip-cross.t
Adrian Buehlmann <adrian@cadifra.com>
parents:
12492
diff
changeset
|
13 > echo $count > $f |
5df8ef0f3f51
tests: fix tabs/indentation in test-strip-cross.t
Adrian Buehlmann <adrian@cadifra.com>
parents:
12492
diff
changeset
|
14 > done |
5df8ef0f3f51
tests: fix tabs/indentation in test-strip-cross.t
Adrian Buehlmann <adrian@cadifra.com>
parents:
12492
diff
changeset
|
15 > count=`expr $count + 1` |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
16 > done |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
17 > hg commit -qAm "$*" |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
18 > } |
5909
f45f7390c1c5
strip: calculate list of extra nodes to save and pass it to changegroupsubset
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
diff
changeset
|
19 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
20 2 1 0 2 0 1 2 |
5909
f45f7390c1c5
strip: calculate list of extra nodes to save and pass it to changegroupsubset
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
diff
changeset
|
21 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
22 $ commit '201 210' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
23 $ commit '102 120' '210' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
24 $ commit '021' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
25 $ commit '201' '021 120' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
26 $ commit '012 021' '102 201' '120 210' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
27 $ commit 'manifest-file' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
28 $ commit '102 120' '012 210' '021 201' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
29 $ commit '201 210' '021 120' '012 102' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
30 $ HGUSER=another-user; export HGUSER |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
31 $ commit 'manifest-file' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
32 $ commit '012' 'manifest-file' |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
33 $ cd .. |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
34 $ hg clone -q -U -r -1 -r -2 -r -3 -r -4 -r -6 orig crossed |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
35 $ cd crossed |
14323
a79fea6b3e77
debugindex etc.: add --changelog and --manifest options
Sune Foldager <cryo@cyanite.org>
parents:
14182
diff
changeset
|
36 $ hg debugindex --manifest |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
37 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
38 0 0 6f105cbb914d 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
39 1 3 1b55917b3699 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
40 2 1 8f3d04e263e5 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
41 3 2 f0ef8726ac4f 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
42 4 4 0b76e38b4070 000000000000 000000000000 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
43 |
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
44 $ for i in 012 021 102 120 201 210 manifest-file; do |
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
45 > echo $i |
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
46 > hg debugindex $i |
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
47 > echo |
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
48 > done |
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
49 012 |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
50 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
51 0 0 b8e02f643373 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
52 1 1 5d9299349fc0 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
53 2 2 2661d26c6496 000000000000 000000000000 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
54 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
55 021 |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
56 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
57 0 0 b8e02f643373 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
58 1 2 5d9299349fc0 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
59 2 1 2661d26c6496 000000000000 000000000000 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
60 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
61 102 |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
62 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
63 0 1 b8e02f643373 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
64 1 0 5d9299349fc0 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
65 2 2 2661d26c6496 000000000000 000000000000 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
66 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
67 120 |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
68 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
69 0 1 b8e02f643373 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
70 1 2 5d9299349fc0 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
71 2 0 2661d26c6496 000000000000 000000000000 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
72 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
73 201 |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
74 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
75 0 2 b8e02f643373 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
76 1 0 5d9299349fc0 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
77 2 1 2661d26c6496 000000000000 000000000000 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
78 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
79 210 |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
80 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
81 0 2 b8e02f643373 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
82 1 1 5d9299349fc0 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
83 2 0 2661d26c6496 000000000000 000000000000 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
84 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
85 manifest-file |
37283
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
86 rev linkrev nodeid p1 p2 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
87 0 3 b8e02f643373 000000000000 000000000000 |
d4e62df1c73d
debugcommands: drop offset and length from debugindex by default
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37282
diff
changeset
|
88 1 4 5d9299349fc0 000000000000 000000000000 |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
89 |
14182
ec5886db9dc6
tests: fix deprecated use of hg debugdata/debugindex
Sune Foldager <cryo@cyanite.org>
parents:
12640
diff
changeset
|
90 $ cd .. |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
91 $ for i in 0 1 2 3 4; do |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
92 > hg clone -q -U --pull crossed $i |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
93 > echo "% Trying to strip revision $i" |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12537
diff
changeset
|
94 > hg --cwd $i strip $i |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
95 > echo "% Verifying" |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
96 > hg --cwd $i verify |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
97 > echo |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
98 > done |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
99 % Trying to strip revision 0 |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12537
diff
changeset
|
100 saved backup bundle to $TESTTMP/0/.hg/strip-backup/*-backup.hg (glob) |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
101 % Verifying |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
102 checking changesets |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
103 checking manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
104 crosschecking files in changesets and manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
105 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37283
diff
changeset
|
106 checked 4 changesets with 15 changes to 7 files |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
107 |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
108 % Trying to strip revision 1 |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12537
diff
changeset
|
109 saved backup bundle to $TESTTMP/1/.hg/strip-backup/*-backup.hg (glob) |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
110 % Verifying |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
111 checking changesets |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
112 checking manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
113 crosschecking files in changesets and manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
114 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37283
diff
changeset
|
115 checked 4 changesets with 14 changes to 7 files |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
116 |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
117 % Trying to strip revision 2 |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12537
diff
changeset
|
118 saved backup bundle to $TESTTMP/2/.hg/strip-backup/*-backup.hg (glob) |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
119 % Verifying |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
120 checking changesets |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
121 checking manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
122 crosschecking files in changesets and manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
123 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37283
diff
changeset
|
124 checked 4 changesets with 14 changes to 7 files |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
125 |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
126 % Trying to strip revision 3 |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12537
diff
changeset
|
127 saved backup bundle to $TESTTMP/3/.hg/strip-backup/*-backup.hg (glob) |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
128 % Verifying |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
129 checking changesets |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
130 checking manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
131 crosschecking files in changesets and manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
132 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37283
diff
changeset
|
133 checked 4 changesets with 19 changes to 7 files |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
134 |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
135 % Trying to strip revision 4 |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12537
diff
changeset
|
136 saved backup bundle to $TESTTMP/4/.hg/strip-backup/*-backup.hg (glob) |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
137 % Verifying |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
138 checking changesets |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
139 checking manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
140 crosschecking files in changesets and manifests |
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
141 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37283
diff
changeset
|
142 checked 4 changesets with 19 changes to 7 files |
12492
72be1ab55d62
tests: unify test-strip-cross
Matt Mackall <mpm@selenic.com>
parents:
11208
diff
changeset
|
143 |