comparison tests/test-fncache.out @ 7290:a3871028aacf

add test-fncache
author Adrian Buehlmann <adrian@cadifra.com>
date Wed, 29 Oct 2008 13:37:35 +0100
parents
children 794def2fe232
comparison
equal deleted inserted replaced
7289:ddab62b2fec4 7290:a3871028aacf
1 % init repo1
2
3 % add a; ci
4 adding a
5
6 % cat .hg/store/fncache
7 data/a.i
8
9 % add a.i/b; ci
10 adding a.i/b
11
12 % cat .hg/store/fncache
13 data/a.i
14 data/a.i.hg/b.i
15
16 % add a.i.hg/c; ci
17 adding a.i.hg/c
18
19 % cat .hg/store/fncache
20 data/a.i
21 data/a.i.hg/b.i
22 data/a.i.hg.hg/c.i
23
24 % hg verify
25 checking changesets
26 checking manifests
27 crosschecking files in changesets and manifests
28 checking files
29 3 files, 3 changesets, 3 total revisions
30
31 % rm .hg/store/fncache
32
33 % hg verify
34 checking changesets
35 checking manifests
36 crosschecking files in changesets and manifests
37 checking files
38 data/a.i@0: missing revlog!
39 data/a.i.hg.hg/c.i@0: missing revlog!
40 data/a.i.hg/b.i@0: missing revlog!
41 3 files, 3 changesets, 3 total revisions
42 3 integrity errors encountered!
43 (first damaged changeset appears to be 0)