author | David Soria Parra <dsp@php.net> |
Sun, 07 Dec 2008 08:47:02 +0100 | |
changeset 7485 | ecfb683675ed |
parent 7429 | dbc40381620e |
child 7714 | f6cee47c0907 |
permissions | -rwxr-xr-x |
4344 | 1 |
#!/bin/sh |
2 |
||
3 |
# @ (34) head |
|
4 |
# | |
|
5 |
# | o (33) head |
|
6 |
# | | |
|
7 |
# o | (32) expand |
|
8 |
# |\ \ |
|
9 |
# | o \ (31) expand |
|
10 |
# | |\ \ |
|
11 |
# | | o \ (30) expand |
|
12 |
# | | |\ \ |
|
13 |
# | | | o | (29) regular commit |
|
14 |
# | | | | | |
|
15 |
# | | o | | (28) merge zero known |
|
16 |
# | | |\ \ \ |
|
17 |
# o | | | | | (27) collapse |
|
18 |
# |/ / / / / |
|
19 |
# | | o---+ (26) merge one known; far right |
|
20 |
# | | | | | |
|
21 |
# +---o | | (25) merge one known; far left |
|
22 |
# | | | | | |
|
23 |
# | | o | | (24) merge one known; immediate right |
|
24 |
# | | |\| | |
|
25 |
# | | o | | (23) merge one known; immediate left |
|
26 |
# | |/| | | |
|
27 |
# +---o---+ (22) merge two known; one far left, one far right |
|
28 |
# | | / / |
|
29 |
# o | | | (21) expand |
|
30 |
# |\ \ \ \ |
|
31 |
# | o---+-+ (20) merge two known; two far right |
|
32 |
# | / / / |
|
33 |
# o | | | (19) expand |
|
34 |
# |\ \ \ \ |
|
35 |
# +---+---o (18) merge two known; two far left |
|
36 |
# | | | | |
|
37 |
# | o | | (17) expand |
|
38 |
# | |\ \ \ |
|
39 |
# | | o---+ (16) merge two known; one immediate right, one near right |
|
40 |
# | | |/ / |
|
41 |
# o | | | (15) expand |
|
42 |
# |\ \ \ \ |
|
43 |
# | o-----+ (14) merge two known; one immediate right, one far right |
|
44 |
# | |/ / / |
|
45 |
# o | | | (13) expand |
|
46 |
# |\ \ \ \ |
|
47 |
# +---o | | (12) merge two known; one immediate right, one far left |
|
48 |
# | | |/ / |
|
49 |
# | o | | (11) expand |
|
50 |
# | |\ \ \ |
|
51 |
# | | o---+ (10) merge two known; one immediate left, one near right |
|
52 |
# | |/ / / |
|
53 |
# o | | | (9) expand |
|
54 |
# |\ \ \ \ |
|
55 |
# | o-----+ (8) merge two known; one immediate left, one far right |
|
56 |
# |/ / / / |
|
57 |
# o | | | (7) expand |
|
58 |
# |\ \ \ \ |
|
59 |
# +---o | | (6) merge two known; one immediate left, one far left |
|
60 |
# | |/ / / |
|
61 |
# | o | | (5) expand |
|
62 |
# | |\ \ \ |
|
63 |
# | | o | | (4) merge two known; one immediate left, one immediate right |
|
64 |
# | |/|/ / |
|
65 |
# | o / / (3) collapse |
|
66 |
# |/ / / |
|
67 |
# o / / (2) collapse |
|
68 |
# |/ / |
|
69 |
# o / (1) collapse |
|
70 |
# |/ |
|
71 |
# o (0) root |
|
72 |
||
7429
dbc40381620e
tests: Skip tests if they will fail because of outer repo
Mads Kiilerich <mads@kiilerich.com>
parents:
7383
diff
changeset
|
73 |
"$TESTDIR/hghave" no-outer-repo || exit 80 |
dbc40381620e
tests: Skip tests if they will fail because of outer repo
Mads Kiilerich <mads@kiilerich.com>
parents:
7383
diff
changeset
|
74 |
|
4344 | 75 |
set -e |
76 |
||
77 |
commit() |
|
78 |
{ |
|
79 |
rev=$1 |
|
80 |
msg=$2 |
|
81 |
shift 2 |
|
82 |
if [ "$#" -gt 0 ]; then |
|
83 |
hg debugsetparents "$@" |
|
84 |
fi |
|
85 |
echo $rev > $rev |
|
86 |
hg add $rev |
|
6385
0d4e068e9e52
commit: when committing the results of a merge, it's all or nothing
Bryan O'Sullivan <bos@serpentine.com>
parents:
6156
diff
changeset
|
87 |
hg rawcommit -q -d "$rev 0" -m "($rev) $msg" $rev |
4344 | 88 |
} |
89 |
||
90 |
echo "[extensions]" >> $HGRCPATH |
|
91 |
echo "graphlog=" >> $HGRCPATH |
|
92 |
||
93 |
echo % init |
|
94 |
hg init repo |
|
95 |
||
96 |
cd repo |
|
97 |
||
98 |
echo % empty repo |
|
99 |
hg glog |
|
100 |
||
101 |
echo % building tree |
|
102 |
commit 0 "root" |
|
103 |
commit 1 "collapse" 0 |
|
104 |
commit 2 "collapse" 1 |
|
105 |
commit 3 "collapse" 2 |
|
106 |
commit 4 "merge two known; one immediate left, one immediate right" 1 3 |
|
107 |
commit 5 "expand" 3 4 |
|
108 |
commit 6 "merge two known; one immediate left, one far left" 2 5 |
|
109 |
commit 7 "expand" 2 5 |
|
110 |
commit 8 "merge two known; one immediate left, one far right" 0 7 |
|
111 |
commit 9 "expand" 7 8 |
|
112 |
commit 10 "merge two known; one immediate left, one near right" 0 6 |
|
113 |
commit 11 "expand" 6 10 |
|
114 |
commit 12 "merge two known; one immediate right, one far left" 1 9 |
|
115 |
commit 13 "expand" 9 11 |
|
116 |
commit 14 "merge two known; one immediate right, one far right" 0 12 |
|
117 |
commit 15 "expand" 13 14 |
|
118 |
commit 16 "merge two known; one immediate right, one near right" 0 1 |
|
119 |
commit 17 "expand" 12 16 |
|
120 |
commit 18 "merge two known; two far left" 1 15 |
|
121 |
commit 19 "expand" 15 17 |
|
122 |
commit 20 "merge two known; two far right" 0 18 |
|
123 |
commit 21 "expand" 19 20 |
|
124 |
commit 22 "merge two known; one far left, one far right" 18 21 |
|
125 |
commit 23 "merge one known; immediate left" 1 22 |
|
126 |
commit 24 "merge one known; immediate right" 0 23 |
|
127 |
commit 25 "merge one known; far left" 21 24 |
|
128 |
commit 26 "merge one known; far right" 18 25 |
|
129 |
commit 27 "collapse" 21 |
|
130 |
commit 28 "merge zero known" 1 26 |
|
131 |
commit 29 "regular commit" 0 |
|
132 |
commit 30 "expand" 28 29 |
|
133 |
commit 31 "expand" 21 30 |
|
134 |
commit 32 "expand" 27 31 |
|
135 |
commit 33 "head" 18 |
|
136 |
commit 34 "head" 32 |
|
137 |
||
138 |
echo % glog -q |
|
139 |
hg glog -q |
|
140 |
||
141 |
echo % glog |
|
142 |
hg glog |
|
4735
8d4fac0a9df7
Make hg glog abort if unused arguments are given.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
4344
diff
changeset
|
143 |
|
5939
56e8a54bf71d
graphlog: add test for filelog graph
Steve Borho <steve@borho.org>
parents:
4735
diff
changeset
|
144 |
echo % file glog |
56e8a54bf71d
graphlog: add test for filelog graph
Steve Borho <steve@borho.org>
parents:
4735
diff
changeset
|
145 |
hg glog 5 |
56e8a54bf71d
graphlog: add test for filelog graph
Steve Borho <steve@borho.org>
parents:
4735
diff
changeset
|
146 |
|
4735
8d4fac0a9df7
Make hg glog abort if unused arguments are given.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
4344
diff
changeset
|
147 |
echo % unused arguments |
5939
56e8a54bf71d
graphlog: add test for filelog graph
Steve Borho <steve@borho.org>
parents:
4735
diff
changeset
|
148 |
hg glog -q foo bar || echo failed |
6969
d76f64cd4cb2
graphlog: fix calls from outside the repository (issue1285)
Patrick Mezard <pmezard@gmail.com>
parents:
6385
diff
changeset
|
149 |
|
d76f64cd4cb2
graphlog: fix calls from outside the repository (issue1285)
Patrick Mezard <pmezard@gmail.com>
parents:
6385
diff
changeset
|
150 |
echo % from outer space |
d76f64cd4cb2
graphlog: fix calls from outside the repository (issue1285)
Patrick Mezard <pmezard@gmail.com>
parents:
6385
diff
changeset
|
151 |
cd .. |
d76f64cd4cb2
graphlog: fix calls from outside the repository (issue1285)
Patrick Mezard <pmezard@gmail.com>
parents:
6385
diff
changeset
|
152 |
hg glog -l1 repo |
d76f64cd4cb2
graphlog: fix calls from outside the repository (issue1285)
Patrick Mezard <pmezard@gmail.com>
parents:
6385
diff
changeset
|
153 |
hg glog -l1 repo/0 |
d76f64cd4cb2
graphlog: fix calls from outside the repository (issue1285)
Patrick Mezard <pmezard@gmail.com>
parents:
6385
diff
changeset
|
154 |
hg glog -l1 repo/missing |
d76f64cd4cb2
graphlog: fix calls from outside the repository (issue1285)
Patrick Mezard <pmezard@gmail.com>
parents:
6385
diff
changeset
|
155 |
|
7383
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
156 |
echo % file log with revs != cset revs |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
157 |
hg init flog |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
158 |
cd flog |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
159 |
echo one >one |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
160 |
hg add one |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
161 |
hg commit -mone |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
162 |
echo two >two |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
163 |
hg add two |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
164 |
hg commit -mtwo |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
165 |
echo more >two |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
166 |
hg commit -mmore |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
167 |
hg glog two |
b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
parents:
6969
diff
changeset
|
168 |