Show More
@@ -179,6 +179,18 b' def verify(repo):' | |||||
179 | (f, short(n), short(p1))) |
|
179 | (f, short(n), short(p1))) | |
180 | nodes[n] = 1 |
|
180 | nodes[n] = 1 | |
181 |
|
181 | |||
|
182 | # check renames | |||
|
183 | try: | |||
|
184 | rp = fl.renamed(n) | |||
|
185 | if rp: | |||
|
186 | fl2 = repo.file(rp[0]) | |||
|
187 | rev = fl2.rev(rp[1]) | |||
|
188 | except KeyboardInterrupt: | |||
|
189 | repo.ui.warn(_("interrupted")) | |||
|
190 | raise | |||
|
191 | except Exception, inst: | |||
|
192 | err(_("checking rename on file %s %s: %s") % (f, short(n), inst)) | |||
|
193 | ||||
182 | # cross-check |
|
194 | # cross-check | |
183 | for node in filenodes[f]: |
|
195 | for node in filenodes[f]: | |
184 | err(_("node %s in manifests not in %s") % (hex(node), f)) |
|
196 | err(_("node %s in manifests not in %s") % (hex(node), f)) |
General Comments 0
You need to be logged in to leave comments.
Login now