Mercurial > hg
annotate tests/test-verify.t @ 44311:2b72c4ff8ed1
nodemap: use an intermediate "docket" file to carry small metadata
This intermediate file will make mmapping, transaction and content validation
easier. (Most of this usefulness will arrive gradually in later changeset). In
particular it will become very useful to append new data are the end of raw file
instead of rewriting on the file on each transaction.
See in code comments for details.
Differential Revision: https://phab.mercurial-scm.org/D7838
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 15 Jan 2020 15:47:50 +0100 |
parents | f1186c292d03 |
children | e1936ae27897 |
rev | line source |
---|---|
37428
52bb6c1224ae
tests: require revlog store for test-verify.t
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37410
diff
changeset
|
1 #require reporevlogstore |
52bb6c1224ae
tests: require revlog store for test-verify.t
Gregory Szorc <gregory.szorc@gmail.com>
parents:
37410
diff
changeset
|
2 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
3 prepare repo |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
4 |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
5 $ hg init a |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
6 $ cd a |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
7 $ echo "some text" > FOO.txt |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
8 $ echo "another text" > bar.txt |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
9 $ echo "more text" > QUICK.txt |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
10 $ hg add |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
11 adding FOO.txt |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
12 adding QUICK.txt |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
13 adding bar.txt |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
14 $ hg ci -mtest1 |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
15 |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
16 verify |
6893 | 17 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
18 $ hg verify |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
19 checking changesets |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
20 checking manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
21 crosschecking files in changesets and manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
22 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
23 checked 1 changesets with 3 changes to 3 files |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
24 |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
25 verify with journal |
6893 | 26 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
27 $ touch .hg/store/journal |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
28 $ hg verify |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
29 abandoned transaction found - run hg recover |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
30 checking changesets |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
31 checking manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
32 crosschecking files in changesets and manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
33 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
34 checked 1 changesets with 3 changes to 3 files |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
35 $ rm .hg/store/journal |
6893 | 36 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
37 introduce some bugs in repo |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
38 |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
39 $ cd .hg/store/data |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
40 $ mv _f_o_o.txt.i X_f_o_o.txt.i |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
41 $ mv bar.txt.i xbar.txt.i |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
42 $ rm _q_u_i_c_k.txt.i |
9690
b33d70849a20
verify: report existence of journal
Sune Foldager <cryo@cyanite.org>
parents:
8720
diff
changeset
|
43 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
44 $ hg verify |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
45 checking changesets |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
46 checking manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
47 crosschecking files in changesets and manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
48 checking files |
25627
9573d8f346f1
verify: clarify misleading fncache message
Matt Mackall <mpm@selenic.com>
parents:
25472
diff
changeset
|
49 warning: revlog 'data/FOO.txt.i' not in fncache! |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
50 0: empty or missing FOO.txt |
28114
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
51 FOO.txt@0: manifest refers to unknown revision f62022d3d590 |
25627
9573d8f346f1
verify: clarify misleading fncache message
Matt Mackall <mpm@selenic.com>
parents:
25472
diff
changeset
|
52 warning: revlog 'data/QUICK.txt.i' not in fncache! |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
53 0: empty or missing QUICK.txt |
28114
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
54 QUICK.txt@0: manifest refers to unknown revision 88b857db8eba |
25627
9573d8f346f1
verify: clarify misleading fncache message
Matt Mackall <mpm@selenic.com>
parents:
25472
diff
changeset
|
55 warning: revlog 'data/bar.txt.i' not in fncache! |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
56 0: empty or missing bar.txt |
28114
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
57 bar.txt@0: manifest refers to unknown revision 256559129457 |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
58 checked 1 changesets with 0 changes to 3 files |
25627
9573d8f346f1
verify: clarify misleading fncache message
Matt Mackall <mpm@selenic.com>
parents:
25472
diff
changeset
|
59 3 warnings encountered! |
25653
9d1e04f5dca7
verify: print hint to run debugrebuildfncache
Gregory Szorc <gregory.szorc@gmail.com>
parents:
25627
diff
changeset
|
60 hint: run "hg debugrebuildfncache" to recover from corrupt fncache |
25627
9573d8f346f1
verify: clarify misleading fncache message
Matt Mackall <mpm@selenic.com>
parents:
25472
diff
changeset
|
61 6 integrity errors encountered! |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
62 (first damaged changeset appears to be 0) |
12316
4134686b83e1
tests: add exit codes to unified tests
Matt Mackall <mpm@selenic.com>
parents:
12172
diff
changeset
|
63 [1] |
6893 | 64 |
16912
6ef3107c661e
tests: cleanup of tests that got lost in their own nested directories
Mads Kiilerich <mads@kiilerich.com>
parents:
12327
diff
changeset
|
65 $ cd ../../.. |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
66 $ cd .. |
6893 | 67 |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
68 Set up a repo for testing missing revlog entries |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
69 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
70 $ hg init missing-entries |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
71 $ cd missing-entries |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
72 $ echo 0 > file |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
73 $ hg ci -Aqm0 |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
74 $ cp -R .hg/store .hg/store-partial |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
75 $ echo 1 > file |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
76 $ hg ci -Aqm1 |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
77 $ cp -R .hg/store .hg/store-full |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
78 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
79 Entire changelog missing |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
80 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
81 $ rm .hg/store/00changelog.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
82 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
83 0: empty or missing changelog |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
84 manifest@0: d0b6632564d4 not in changesets |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
85 manifest@1: 941fc4534185 not in changesets |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
86 3 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
87 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
88 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
89 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
90 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
91 Entire manifest log missing |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
92 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
93 $ rm .hg/store/00manifest.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
94 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
95 0: empty or missing manifest |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
96 1 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
97 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
98 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
99 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
100 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
101 Entire filelog missing |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
102 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
103 $ rm .hg/store/data/file.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
104 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
105 warning: revlog 'data/file.i' not in fncache! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
106 0: empty or missing file |
28114
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
107 file@0: manifest refers to unknown revision 362fef284ce2 |
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
108 file@1: manifest refers to unknown revision c10f2164107d |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
109 1 warnings encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
110 hint: run "hg debugrebuildfncache" to recover from corrupt fncache |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
111 3 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
112 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
113 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
114 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
115 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
116 Entire changelog and manifest log missing |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
117 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
118 $ rm .hg/store/00changelog.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
119 $ rm .hg/store/00manifest.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
120 $ hg verify -q |
37410
a6651f5e2c78
verify: drop "revlog" from warning message
Gregory Szorc <gregory.szorc@gmail.com>
parents:
32571
diff
changeset
|
121 warning: orphan data file 'data/file.i' |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
122 1 warnings encountered! |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
123 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
124 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
125 Entire changelog and filelog missing |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
126 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
127 $ rm .hg/store/00changelog.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
128 $ rm .hg/store/data/file.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
129 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
130 0: empty or missing changelog |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
131 manifest@0: d0b6632564d4 not in changesets |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
132 manifest@1: 941fc4534185 not in changesets |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
133 warning: revlog 'data/file.i' not in fncache! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
134 ?: empty or missing file |
28114
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
135 file@0: manifest refers to unknown revision 362fef284ce2 |
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
136 file@1: manifest refers to unknown revision c10f2164107d |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
137 1 warnings encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
138 hint: run "hg debugrebuildfncache" to recover from corrupt fncache |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
139 6 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
140 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
141 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
142 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
143 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
144 Entire manifest log and filelog missing |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
145 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
146 $ rm .hg/store/00manifest.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
147 $ rm .hg/store/data/file.* |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
148 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
149 0: empty or missing manifest |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
150 warning: revlog 'data/file.i' not in fncache! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
151 0: empty or missing file |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
152 1 warnings encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
153 hint: run "hg debugrebuildfncache" to recover from corrupt fncache |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
154 2 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
155 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
156 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
157 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
158 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
159 Changelog missing entry |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
160 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
161 $ cp -f .hg/store-partial/00changelog.* .hg/store |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
162 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
163 manifest@?: rev 1 points to nonexistent changeset 1 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
164 manifest@?: 941fc4534185 not in changesets |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
165 file@?: rev 1 points to nonexistent changeset 1 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
166 (expected 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
167 1 warnings encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
168 3 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
169 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
170 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
171 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
172 Manifest log missing entry |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
173 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
174 $ cp -f .hg/store-partial/00manifest.* .hg/store |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
175 $ hg verify -q |
28113
d2e0d57824c2
verify: include "manifest" prefix in a few more places
Martin von Zweigbergk <martinvonz@google.com>
parents:
28110
diff
changeset
|
176 manifest@1: changeset refers to unknown revision 941fc4534185 |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
177 file@1: c10f2164107d not in manifests |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
178 2 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
179 (first damaged changeset appears to be 1) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
180 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
181 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
182 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
183 Filelog missing entry |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
184 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
185 $ cp -f .hg/store-partial/data/file.* .hg/store/data |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
186 $ hg verify -q |
28114
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
187 file@1: manifest refers to unknown revision c10f2164107d |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
188 1 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
189 (first damaged changeset appears to be 1) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
190 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
191 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
192 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
193 Changelog and manifest log missing entry |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
194 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
195 $ cp -f .hg/store-partial/00changelog.* .hg/store |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
196 $ cp -f .hg/store-partial/00manifest.* .hg/store |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
197 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
198 file@?: rev 1 points to nonexistent changeset 1 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
199 (expected 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
200 file@?: c10f2164107d not in manifests |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
201 1 warnings encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
202 2 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
203 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
204 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
205 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
206 Changelog and filelog missing entry |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
207 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
208 $ cp -f .hg/store-partial/00changelog.* .hg/store |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
209 $ cp -f .hg/store-partial/data/file.* .hg/store/data |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
210 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
211 manifest@?: rev 1 points to nonexistent changeset 1 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
212 manifest@?: 941fc4534185 not in changesets |
28114
2a03a365f645
verify: use similar language for missing manifest and file revisions
Martin von Zweigbergk <martinvonz@google.com>
parents:
28113
diff
changeset
|
213 file@?: manifest refers to unknown revision c10f2164107d |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
214 3 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
215 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
216 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
217 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
218 Manifest and filelog missing entry |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
219 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
220 $ cp -f .hg/store-partial/00manifest.* .hg/store |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
221 $ cp -f .hg/store-partial/data/file.* .hg/store/data |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
222 $ hg verify -q |
28113
d2e0d57824c2
verify: include "manifest" prefix in a few more places
Martin von Zweigbergk <martinvonz@google.com>
parents:
28110
diff
changeset
|
223 manifest@1: changeset refers to unknown revision 941fc4534185 |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
224 1 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
225 (first damaged changeset appears to be 1) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
226 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
227 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
228 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
229 Corrupt changelog base node to cause failure to read revision |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
230 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
231 $ printf abcd | dd conv=notrunc of=.hg/store/00changelog.i bs=1 seek=16 \ |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
232 > 2> /dev/null |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
233 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
234 0: unpacking changeset 08b1860757c2: * (glob) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
235 manifest@?: rev 0 points to unexpected changeset 0 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
236 manifest@?: d0b6632564d4 not in changesets |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
237 file@?: rev 0 points to unexpected changeset 0 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
238 (expected 1) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
239 1 warnings encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
240 4 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
241 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
242 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
243 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
244 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
245 Corrupt manifest log base node to cause failure to read revision |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
246 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
247 $ printf abcd | dd conv=notrunc of=.hg/store/00manifest.i bs=1 seek=16 \ |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
248 > 2> /dev/null |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
249 $ hg verify -q |
28113
d2e0d57824c2
verify: include "manifest" prefix in a few more places
Martin von Zweigbergk <martinvonz@google.com>
parents:
28110
diff
changeset
|
250 manifest@0: reading delta d0b6632564d4: * (glob) |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
251 file@0: 362fef284ce2 not in manifests |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
252 2 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
253 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
254 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
255 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
256 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
257 Corrupt filelog base node to cause failure to read revision |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
258 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
259 $ printf abcd | dd conv=notrunc of=.hg/store/data/file.i bs=1 seek=16 \ |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
260 > 2> /dev/null |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
261 $ hg verify -q |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
262 file@0: unpacking 362fef284ce2: * (glob) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
263 1 integrity errors encountered! |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
264 (first damaged changeset appears to be 0) |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
265 [1] |
30556
c059286a0f9c
tests: replace "cp -r" with "cp -R"
Jun Wu <quark@fb.com>
parents:
28214
diff
changeset
|
266 $ cp -R .hg/store-full/. .hg/store |
28110
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
267 |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
268 $ cd .. |
2b41f8655bbc
tests: add tests for missing revlogs and revlog entries
Martin von Zweigbergk <martinvonz@google.com>
parents:
25653
diff
changeset
|
269 |
17385
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
270 test changelog without a manifest |
8016
baaa832fd253
raise RevlogError when parser can't parse the revlog index
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
6898
diff
changeset
|
271 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
272 $ hg init b |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
273 $ cd b |
17385
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
274 $ hg branch foo |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
275 marked working directory as branch foo |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
276 (branches are permanent and global, did you want a bookmark?) |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
277 $ hg ci -m branchfoo |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
278 $ hg verify |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
279 checking changesets |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
280 checking manifests |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
281 crosschecking files in changesets and manifests |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
282 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
283 checked 1 changesets with 0 changes to 0 files |
17385
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
284 |
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
285 test revlog corruption |
8016
baaa832fd253
raise RevlogError when parser can't parse the revlog index
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
6898
diff
changeset
|
286 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
287 $ touch a |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
288 $ hg add a |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
289 $ hg ci -m a |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
290 |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
291 $ echo 'corrupted' > b |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
292 $ dd if=.hg/store/data/a.i of=start bs=1 count=20 2>/dev/null |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
293 $ cat start b > .hg/store/data/a.i |
8016
baaa832fd253
raise RevlogError when parser can't parse the revlog index
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
6898
diff
changeset
|
294 |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
295 $ hg verify |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
296 checking changesets |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
297 checking manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
298 crosschecking files in changesets and manifests |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
299 checking files |
17385
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
300 a@1: broken revlog! (index data/a.i is corrupted) |
37410
a6651f5e2c78
verify: drop "revlog" from warning message
Gregory Szorc <gregory.szorc@gmail.com>
parents:
32571
diff
changeset
|
301 warning: orphan data file 'data/a.i' |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
302 checked 2 changesets with 0 changes to 1 files |
11787
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
303 1 warnings encountered! |
7830e693b704
tests: unify test-verify
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
9690
diff
changeset
|
304 1 integrity errors encountered! |
17385
b32a30da608d
verify: do not choke on valid changelog without manifest
Patrick Mezard <patrick@mezard.eu>
parents:
16912
diff
changeset
|
305 (first damaged changeset appears to be 1) |
12316
4134686b83e1
tests: add exit codes to unified tests
Matt Mackall <mpm@selenic.com>
parents:
12172
diff
changeset
|
306 [1] |
8016
baaa832fd253
raise RevlogError when parser can't parse the revlog index
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
6898
diff
changeset
|
307 |
12172 | 308 $ cd .. |
12170
581066a319e5
verify: fix "missing revlog!" errors for revlog format v0 and add test
Thomas Arendsen Hein <thomas@intevation.de>
parents:
9690
diff
changeset
|
309 |
12172 | 310 test revlog format 0 |
12170
581066a319e5
verify: fix "missing revlog!" errors for revlog format v0 and add test
Thomas Arendsen Hein <thomas@intevation.de>
parents:
9690
diff
changeset
|
311 |
25472
4d2b9b304ad0
tests: drop explicit $TESTDIR from executables
Matt Mackall <mpm@selenic.com>
parents:
17385
diff
changeset
|
312 $ revlog-formatv0.py |
12172 | 313 $ cd formatv0 |
314 $ hg verify | |
315 repository uses revlog format 0 | |
316 checking changesets | |
317 checking manifests | |
318 crosschecking files in changesets and manifests | |
319 checking files | |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
320 checked 1 changesets with 1 changes to 1 files |
16912
6ef3107c661e
tests: cleanup of tests that got lost in their own nested directories
Mads Kiilerich <mads@kiilerich.com>
parents:
12327
diff
changeset
|
321 $ cd .. |
32288
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
322 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
323 test flag processor and skipflags |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
324 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
325 $ hg init skipflags |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
326 $ cd skipflags |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
327 $ cat >> .hg/hgrc <<EOF |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
328 > [extensions] |
32571
b6612d8579e4
tests: fix typo in "flagprocesor"
Martin von Zweigbergk <martinvonz@google.com>
parents:
32288
diff
changeset
|
329 > flagprocessor=$RUNTESTDIR/flagprocessorext.py |
32288
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
330 > EOF |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
331 $ echo '[BASE64]content' > base64 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
332 $ hg commit -Aqm 'flag processor content' base64 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
333 $ hg verify |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
334 checking changesets |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
335 checking manifests |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
336 crosschecking files in changesets and manifests |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
337 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
338 checked 1 changesets with 1 changes to 1 files |
32288
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
339 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
340 $ cat >> $TESTTMP/break-base64.py <<EOF |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
341 > from __future__ import absolute_import |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
342 > import base64 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
343 > base64.b64decode=lambda x: x |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
344 > EOF |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
345 $ cat >> .hg/hgrc <<EOF |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
346 > breakbase64=$TESTTMP/break-base64.py |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
347 > EOF |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
348 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
349 $ hg verify |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
350 checking changesets |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
351 checking manifests |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
352 crosschecking files in changesets and manifests |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
353 checking files |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
354 base64@0: unpacking 794cee7777cb: integrity check failed on data/base64.i:0 |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
355 checked 1 changesets with 1 changes to 1 files |
32288
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
356 1 integrity errors encountered! |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
357 (first damaged changeset appears to be 0) |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
358 [1] |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
359 $ hg verify --config verify.skipflags=2147483647 |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
360 checking changesets |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
361 checking manifests |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
362 crosschecking files in changesets and manifests |
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
363 checking files |
39489
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37428
diff
changeset
|
364 checked 1 changesets with 1 changes to 1 files |
32288
a2ab9ebcd85b
verify: add a config option to skip certain flag processors
Jun Wu <quark@fb.com>
parents:
30556
diff
changeset
|
365 |