##// END OF EJS Templates
verify: clarify misleading fncache message...
Matt Mackall -
r25627:9573d8f3 default
parent child Browse files
Show More
@@ -244,7 +244,7 b' def _verify(repo):'
244 244 try:
245 245 storefiles.remove(ff)
246 246 except KeyError:
247 err(lr, _("missing revlog!"), ff)
247 warn(_(" warning: revlog '%s' not in fncache!") % ff)
248 248
249 249 checklog(fl, f, lr)
250 250 seen = {}
@@ -48,13 +48,11 b' Testing verify:'
48 48 checking manifests
49 49 crosschecking files in changesets and manifests
50 50 checking files
51 data/a.i@0: missing revlog!
52 data/a.i.hg/c.i@2: missing revlog!
53 data/a.i/b.i@1: missing revlog!
51 warning: revlog 'data/a.i' not in fncache!
52 warning: revlog 'data/a.i.hg/c.i' not in fncache!
53 warning: revlog 'data/a.i/b.i' not in fncache!
54 54 3 files, 3 changesets, 3 total revisions
55 3 integrity errors encountered!
56 (first damaged changeset appears to be 0)
57 [1]
55 3 warnings encountered!
58 56 $ cd ..
59 57
60 58 Non store repo:
@@ -44,17 +44,18 b' introduce some bugs in repo'
44 44 checking manifests
45 45 crosschecking files in changesets and manifests
46 46 checking files
47 data/FOO.txt.i@0: missing revlog!
47 warning: revlog 'data/FOO.txt.i' not in fncache!
48 48 0: empty or missing FOO.txt
49 49 FOO.txt@0: f62022d3d590 in manifests not found
50 data/QUICK.txt.i@0: missing revlog!
50 warning: revlog 'data/QUICK.txt.i' not in fncache!
51 51 0: empty or missing QUICK.txt
52 52 QUICK.txt@0: 88b857db8eba in manifests not found
53 data/bar.txt.i@0: missing revlog!
53 warning: revlog 'data/bar.txt.i' not in fncache!
54 54 0: empty or missing bar.txt
55 55 bar.txt@0: 256559129457 in manifests not found
56 56 3 files, 1 changesets, 0 total revisions
57 9 integrity errors encountered!
57 3 warnings encountered!
58 6 integrity errors encountered!
58 59 (first damaged changeset appears to be 0)
59 60 [1]
60 61
General Comments 0
You need to be logged in to leave comments. Login now