3 test_description
='ancestor culling and limiting by parent number'
10 git rev-parse
"$@" >expect
&&
11 git rev-list
$rev_list_args --all >actual
&&
12 test_cmp expect actual
15 test_expect_success setup
'
22 test_tick=$(($test_tick - 2400)) &&
28 git log --pretty=oneline --abbrev-commit
31 test_expect_success
'one is ancestor of others and should not be shown' '
33 git rev-list one --not four >result &&
34 test_must_be_empty result
38 test_expect_success
'setup roots, merges and octopuses' '
40 git checkout --orphan newroot &&
42 git checkout -b sidebranch two &&
44 git checkout -b anotherbranch three &&
46 git checkout -b yetanotherbranch four &&
48 git checkout master &&
50 git merge --allow-unrelated-histories -m normalmerge newroot &&
51 git tag normalmerge &&
53 git merge -m tripus sidebranch anotherbranch &&
55 git checkout -b tetrabranch normalmerge &&
57 git merge -m tetrapus sidebranch anotherbranch yetanotherbranch &&
62 test_expect_success
'rev-list roots' '
64 check_revlist "--max-parents=0" one five
67 test_expect_success
'rev-list no merges' '
69 check_revlist "--max-parents=1" one eight seven six five four three two &&
70 check_revlist "--no-merges" one eight seven six five four three two
73 test_expect_success
'rev-list no octopuses' '
75 check_revlist "--max-parents=2" one normalmerge eight seven six five four three two
78 test_expect_success
'rev-list no roots' '
80 check_revlist "--min-parents=1" tetrapus tripus normalmerge eight seven six four three two
83 test_expect_success
'rev-list merges' '
85 check_revlist "--min-parents=2" tetrapus tripus normalmerge &&
86 check_revlist "--merges" tetrapus tripus normalmerge
89 test_expect_success
'rev-list octopus' '
91 check_revlist "--min-parents=3" tetrapus tripus
94 test_expect_success
'rev-list ordinary commits' '
96 check_revlist "--min-parents=1 --max-parents=1" eight seven six four three two
99 test_expect_success
'rev-list --merges --no-merges yields empty set' '
101 check_revlist "--min-parents=2 --no-merges" &&
102 check_revlist "--merges --no-merges" &&
103 check_revlist "--no-merges --merges"
106 test_expect_success
'rev-list override and infinities' '
108 check_revlist "--min-parents=2 --max-parents=1 --max-parents=3" tripus normalmerge &&
109 check_revlist "--min-parents=1 --min-parents=2 --max-parents=7" tetrapus tripus normalmerge &&
110 check_revlist "--min-parents=2 --max-parents=8" tetrapus tripus normalmerge &&
111 check_revlist "--min-parents=2 --max-parents=-1" tetrapus tripus normalmerge &&
112 check_revlist "--min-parents=2 --no-max-parents" tetrapus tripus normalmerge &&
113 check_revlist "--max-parents=0 --min-parents=1 --no-min-parents" one five
116 test_expect_success
'dodecapus' '
119 for i in 1 2 3 4 5 6 7 8 9 10 11
121 git checkout -b root$i five &&
123 roots="$roots root$i" ||
126 git checkout master &&
128 git merge -m dodecapus $roots &&
131 check_revlist "--min-parents=4" dodecapus tetrapus &&
132 check_revlist "--min-parents=8" dodecapus &&
133 check_revlist "--min-parents=12" dodecapus &&
134 check_revlist "--min-parents=13" &&
135 check_revlist "--min-parents=4 --max-parents=11" tetrapus
138 test_expect_success
'ancestors with the same commit time' '
140 test_tick_keep=$test_tick &&
141 for i in 1 2 3 4 5 6 7 8; do
142 test_tick=$test_tick_keep
145 git rev-list t1^! --not t$i >result &&
146 test_must_be_empty result