##// END OF EJS Templates
revsetbenchmark: add a rebase-related revset to the benchmark list
Pierre-Yves David -
r22557:ace83201 default
parent child Browse files
Show More
@@ -1,30 +1,32
1 all()
1 all()
2 draft()
2 draft()
3 ::tip
3 ::tip
4 draft() and ::tip
4 draft() and ::tip
5 ::tip and draft()
5 ::tip and draft()
6 0::tip
6 0::tip
7 roots(0::tip)
7 roots(0::tip)
8 author(lmoscovicz)
8 author(lmoscovicz)
9 author(mpm)
9 author(mpm)
10 author(lmoscovicz) or author(mpm)
10 author(lmoscovicz) or author(mpm)
11 author(mpm) or author(lmoscovicz)
11 author(mpm) or author(lmoscovicz)
12 tip:0
12 tip:0
13 max(tip:0)
13 max(tip:0)
14 min(0:tip)
14 min(0:tip)
15 0::
15 0::
16 min(0::)
16 min(0::)
17 # those two `roots(...)` inputs are close to what phase movement use.
17 # those two `roots(...)` inputs are close to what phase movement use.
18 roots((tip~100::) - (tip~100::tip))
18 roots((tip~100::) - (tip~100::tip))
19 roots((0::) - (0::tip))
19 roots((0::) - (0::tip))
20 ::p1(p1(tip))::
20 ::p1(p1(tip))::
21 public()
21 public()
22 :10000 and public()
22 :10000 and public()
23 draft()
23 draft()
24 :10000 and draft()
24 :10000 and draft()
25 max(::(tip~20) - obsolete())
25 max(::(tip~20) - obsolete())
26 roots((0:tip)::)
26 roots((0:tip)::)
27 (not public() - obsolete())
27 (not public() - obsolete())
28 (_intlist('20000\x0020001')) and merge()
28 (_intlist('20000\x0020001')) and merge()
29 parents(20000)
29 parents(20000)
30 (20000::) - (20000)
30 (20000::) - (20000)
31 # The one below is used by rebase
32 (children(ancestor(tip~5, tip)) and ::(tip~5))::
General Comments 0
You need to be logged in to leave comments. Login now