##// END OF EJS Templates
fuzz: exercise more of the revlog API...
Augie Fackler -
r41340:ebe51a2e default
parent child Browse files
Show More
@@ -19,6 +19,11 b' from parsers import parse_index2'
19 19 for inline in (True, False):
20 20 try:
21 21 index, cache = parse_index2(data, inline)
22 index.slicechunktodensity(list(range(len(index))), 0.5, 262144)
23 for rev in range(len(index)):
24 node = index[rev][7]
25 partial = index.shortest(node)
26 index.partialmatch(node[:partial])
22 27 except Exception as e:
23 28 pass
24 29 # uncomment this print if you're editing this Python code
General Comments 0
You need to be logged in to leave comments. Login now