Blame


1 c84d8c75 2019-01-02 stsp #!/bin/sh
2 c84d8c75 2019-01-02 stsp #
3 c84d8c75 2019-01-02 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 c84d8c75 2019-01-02 stsp #
5 c84d8c75 2019-01-02 stsp # Permission to use, copy, modify, and distribute this software for any
6 c84d8c75 2019-01-02 stsp # purpose with or without fee is hereby granted, provided that the above
7 c84d8c75 2019-01-02 stsp # copyright notice and this permission notice appear in all copies.
8 c84d8c75 2019-01-02 stsp #
9 c84d8c75 2019-01-02 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 c84d8c75 2019-01-02 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 c84d8c75 2019-01-02 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 c84d8c75 2019-01-02 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 c84d8c75 2019-01-02 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 c84d8c75 2019-01-02 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 c84d8c75 2019-01-02 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 c84d8c75 2019-01-02 stsp
17 c84d8c75 2019-01-02 stsp . ./common.sh
18 c84d8c75 2019-01-02 stsp
19 c84d8c75 2019-01-02 stsp function test_update_basic {
20 0fbd721f 2019-01-02 stsp local testroot=`test_init update_basic`
21 c84d8c75 2019-01-02 stsp
22 3c90ba67 2019-01-02 stsp got checkout $testroot/repo $testroot/wt > /dev/null
23 e60e7f5b 2019-02-10 stsp ret="$?"
24 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
25 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
26 c84d8c75 2019-01-02 stsp return 1
27 c84d8c75 2019-01-02 stsp fi
28 c84d8c75 2019-01-02 stsp
29 c84d8c75 2019-01-02 stsp echo "modified alpha" > $testroot/repo/alpha
30 c84d8c75 2019-01-02 stsp git_commit $testroot/repo -m "modified alpha"
31 c84d8c75 2019-01-02 stsp
32 c84d8c75 2019-01-02 stsp echo "U alpha" > $testroot/stdout.expected
33 9c4b8182 2019-01-02 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
34 9c4b8182 2019-01-02 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
35 9c4b8182 2019-01-02 stsp echo >> $testroot/stdout.expected
36 c84d8c75 2019-01-02 stsp
37 c84d8c75 2019-01-02 stsp (cd $testroot/wt && got update > $testroot/stdout)
38 c84d8c75 2019-01-02 stsp
39 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
40 e60e7f5b 2019-02-10 stsp ret="$?"
41 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
42 c84d8c75 2019-01-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
43 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
44 c84d8c75 2019-01-02 stsp return 1
45 c84d8c75 2019-01-02 stsp fi
46 c84d8c75 2019-01-02 stsp
47 c84d8c75 2019-01-02 stsp echo "modified alpha" > $testroot/content.expected
48 52a3df9b 2019-01-06 stsp cat $testroot/wt/alpha > $testroot/content
49 c84d8c75 2019-01-02 stsp
50 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
51 693719bc 2019-01-03 stsp ret="$?"
52 693719bc 2019-01-03 stsp if [ "$ret" != "0" ]; then
53 c84d8c75 2019-01-02 stsp diff -u $testroot/content.expected $testroot/content
54 c84d8c75 2019-01-02 stsp fi
55 693719bc 2019-01-03 stsp test_done "$testroot" "$ret"
56 c84d8c75 2019-01-02 stsp }
57 c84d8c75 2019-01-02 stsp
58 3b4d3732 2019-01-02 stsp function test_update_adds_file {
59 3b4d3732 2019-01-02 stsp local testroot=`test_init update_adds_file`
60 3b4d3732 2019-01-02 stsp
61 3b4d3732 2019-01-02 stsp got checkout $testroot/repo $testroot/wt > /dev/null
62 e60e7f5b 2019-02-10 stsp ret="$?"
63 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
64 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
65 3b4d3732 2019-01-02 stsp return 1
66 3b4d3732 2019-01-02 stsp fi
67 3b4d3732 2019-01-02 stsp
68 3b4d3732 2019-01-02 stsp echo "new" > $testroot/repo/gamma/new
69 3b4d3732 2019-01-02 stsp (cd $testroot/repo && git add .)
70 3b4d3732 2019-01-02 stsp git_commit $testroot/repo -m "adding a new file"
71 3b4d3732 2019-01-02 stsp
72 3b4d3732 2019-01-02 stsp echo "A gamma/new" > $testroot/stdout.expected
73 3b4d3732 2019-01-02 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
74 3b4d3732 2019-01-02 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
75 3b4d3732 2019-01-02 stsp echo >> $testroot/stdout.expected
76 3b4d3732 2019-01-02 stsp
77 3b4d3732 2019-01-02 stsp (cd $testroot/wt && got update > $testroot/stdout)
78 3b4d3732 2019-01-02 stsp
79 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
80 e60e7f5b 2019-02-10 stsp ret="$?"
81 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
82 3b4d3732 2019-01-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
83 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
84 3b4d3732 2019-01-02 stsp return 1
85 3b4d3732 2019-01-02 stsp fi
86 3b4d3732 2019-01-02 stsp
87 3b4d3732 2019-01-02 stsp echo "new" >> $testroot/content.expected
88 52a3df9b 2019-01-06 stsp cat $testroot/wt/gamma/new > $testroot/content
89 3b4d3732 2019-01-02 stsp
90 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
91 693719bc 2019-01-03 stsp ret="$?"
92 693719bc 2019-01-03 stsp if [ "$ret" != "0" ]; then
93 3b4d3732 2019-01-02 stsp diff -u $testroot/content.expected $testroot/content
94 3b4d3732 2019-01-02 stsp fi
95 693719bc 2019-01-03 stsp test_done "$testroot" "$ret"
96 3b4d3732 2019-01-02 stsp }
97 3b4d3732 2019-01-02 stsp
98 512f0d0e 2019-01-02 stsp function test_update_deletes_file {
99 512f0d0e 2019-01-02 stsp local testroot=`test_init update_deletes_file`
100 512f0d0e 2019-01-02 stsp
101 512f0d0e 2019-01-02 stsp got checkout $testroot/repo $testroot/wt > /dev/null
102 e60e7f5b 2019-02-10 stsp ret="$?"
103 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
104 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
105 512f0d0e 2019-01-02 stsp return 1
106 512f0d0e 2019-01-02 stsp fi
107 512f0d0e 2019-01-02 stsp
108 512f0d0e 2019-01-02 stsp (cd $testroot/repo && git_rm $testroot/repo beta)
109 512f0d0e 2019-01-02 stsp git_commit $testroot/repo -m "deleting a file"
110 512f0d0e 2019-01-02 stsp
111 512f0d0e 2019-01-02 stsp echo "D beta" > $testroot/stdout.expected
112 512f0d0e 2019-01-02 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
113 512f0d0e 2019-01-02 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
114 512f0d0e 2019-01-02 stsp echo >> $testroot/stdout.expected
115 512f0d0e 2019-01-02 stsp
116 512f0d0e 2019-01-02 stsp (cd $testroot/wt && got update > $testroot/stdout)
117 512f0d0e 2019-01-02 stsp
118 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
119 e60e7f5b 2019-02-10 stsp ret="$?"
120 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
121 512f0d0e 2019-01-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
122 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
123 512f0d0e 2019-01-02 stsp return 1
124 512f0d0e 2019-01-02 stsp fi
125 512f0d0e 2019-01-02 stsp
126 512f0d0e 2019-01-02 stsp if [ -e $testroot/wt/beta ]; then
127 512f0d0e 2019-01-02 stsp echo "removed file beta still exists on disk" >&2
128 52a3df9b 2019-01-06 stsp test_done "$testroot" "1"
129 512f0d0e 2019-01-02 stsp return 1
130 512f0d0e 2019-01-02 stsp fi
131 512f0d0e 2019-01-02 stsp
132 52a3df9b 2019-01-06 stsp test_done "$testroot" "0"
133 512f0d0e 2019-01-02 stsp }
134 512f0d0e 2019-01-02 stsp
135 f5c49f82 2019-01-06 stsp function test_update_deletes_dir {
136 f5c49f82 2019-01-06 stsp local testroot=`test_init update_deletes_dir`
137 f5c49f82 2019-01-06 stsp
138 f5c49f82 2019-01-06 stsp got checkout $testroot/repo $testroot/wt > /dev/null
139 e60e7f5b 2019-02-10 stsp ret="$?"
140 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
141 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
142 f5c49f82 2019-01-06 stsp return 1
143 f5c49f82 2019-01-06 stsp fi
144 f5c49f82 2019-01-06 stsp
145 f5c49f82 2019-01-06 stsp (cd $testroot/repo && git_rm $testroot/repo -r epsilon)
146 f5c49f82 2019-01-06 stsp git_commit $testroot/repo -m "deleting a directory"
147 f5c49f82 2019-01-06 stsp
148 f5c49f82 2019-01-06 stsp echo "D epsilon/zeta" > $testroot/stdout.expected
149 f5c49f82 2019-01-06 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
150 f5c49f82 2019-01-06 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
151 f5c49f82 2019-01-06 stsp echo >> $testroot/stdout.expected
152 f5c49f82 2019-01-06 stsp
153 f5c49f82 2019-01-06 stsp (cd $testroot/wt && got update > $testroot/stdout)
154 f5c49f82 2019-01-06 stsp
155 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
156 e60e7f5b 2019-02-10 stsp ret="$?"
157 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
158 f5c49f82 2019-01-06 stsp diff -u $testroot/stdout.expected $testroot/stdout
159 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
160 f5c49f82 2019-01-06 stsp return 1
161 f5c49f82 2019-01-06 stsp fi
162 f5c49f82 2019-01-06 stsp
163 f5c49f82 2019-01-06 stsp if [ -e $testroot/wt/epsilon ]; then
164 f5c49f82 2019-01-06 stsp echo "removed dir epsilon still exists on disk" >&2
165 52a3df9b 2019-01-06 stsp test_done "$testroot" "1"
166 f5c49f82 2019-01-06 stsp return 1
167 f5c49f82 2019-01-06 stsp fi
168 f5c49f82 2019-01-06 stsp
169 52a3df9b 2019-01-06 stsp test_done "$testroot" "0"
170 f5c49f82 2019-01-06 stsp }
171 f5c49f82 2019-01-06 stsp
172 5cc266ba 2019-01-06 stsp function test_update_deletes_dir_with_path_prefix {
173 5cc266ba 2019-01-06 stsp local testroot=`test_init update_deletes_dir_with_path_prefix`
174 5cc266ba 2019-01-06 stsp local first_rev=`git_show_head $testroot/repo`
175 5cc266ba 2019-01-06 stsp
176 5cc266ba 2019-01-06 stsp mkdir $testroot/repo/epsilon/psi
177 5cc266ba 2019-01-06 stsp echo mu > $testroot/repo/epsilon/psi/mu
178 5cc266ba 2019-01-06 stsp (cd $testroot/repo && git add .)
179 5cc266ba 2019-01-06 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
180 5cc266ba 2019-01-06 stsp
181 5cc266ba 2019-01-06 stsp # check out the epsilon/ sub-tree
182 5cc266ba 2019-01-06 stsp got checkout -p epsilon $testroot/repo $testroot/wt > /dev/null
183 e60e7f5b 2019-02-10 stsp ret="$?"
184 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
185 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
186 5cc266ba 2019-01-06 stsp return 1
187 5cc266ba 2019-01-06 stsp fi
188 5cc266ba 2019-01-06 stsp
189 5cc266ba 2019-01-06 stsp # update back to first commit and expect psi/mu to be deleted
190 5cc266ba 2019-01-06 stsp echo "D psi/mu" > $testroot/stdout.expected
191 5cc266ba 2019-01-06 stsp echo "Updated to commit $first_rev" >> $testroot/stdout.expected
192 5cc266ba 2019-01-06 stsp
193 5cc266ba 2019-01-06 stsp (cd $testroot/wt && got update -c $first_rev > $testroot/stdout)
194 5cc266ba 2019-01-06 stsp
195 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
196 e60e7f5b 2019-02-10 stsp ret="$?"
197 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
198 5cc266ba 2019-01-06 stsp diff -u $testroot/stdout.expected $testroot/stdout
199 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
200 5cc266ba 2019-01-06 stsp return 1
201 5cc266ba 2019-01-06 stsp fi
202 5cc266ba 2019-01-06 stsp
203 5cc266ba 2019-01-06 stsp if [ -e $testroot/wt/psi ]; then
204 5cc266ba 2019-01-06 stsp echo "removed dir psi still exists on disk" >&2
205 5cc266ba 2019-01-06 stsp test_done "$testroot" "1"
206 5cc266ba 2019-01-06 stsp return 1
207 5cc266ba 2019-01-06 stsp fi
208 5cc266ba 2019-01-06 stsp
209 52a3df9b 2019-01-06 stsp test_done "$testroot" "0"
210 5cc266ba 2019-01-06 stsp }
211 5cc266ba 2019-01-06 stsp
212 90285c3b 2019-01-08 stsp function test_update_deletes_dir_recursively {
213 90285c3b 2019-01-08 stsp local testroot=`test_init update_deletes_dir_recursively`
214 90285c3b 2019-01-08 stsp local first_rev=`git_show_head $testroot/repo`
215 90285c3b 2019-01-08 stsp
216 90285c3b 2019-01-08 stsp mkdir $testroot/repo/epsilon/psi
217 90285c3b 2019-01-08 stsp echo mu > $testroot/repo/epsilon/psi/mu
218 90285c3b 2019-01-08 stsp mkdir $testroot/repo/epsilon/psi/chi
219 90285c3b 2019-01-08 stsp echo tau > $testroot/repo/epsilon/psi/chi/tau
220 90285c3b 2019-01-08 stsp (cd $testroot/repo && git add .)
221 90285c3b 2019-01-08 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
222 90285c3b 2019-01-08 stsp
223 90285c3b 2019-01-08 stsp # check out the epsilon/ sub-tree
224 90285c3b 2019-01-08 stsp got checkout -p epsilon $testroot/repo $testroot/wt > /dev/null
225 e60e7f5b 2019-02-10 stsp ret="$?"
226 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
227 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
228 90285c3b 2019-01-08 stsp return 1
229 90285c3b 2019-01-08 stsp fi
230 90285c3b 2019-01-08 stsp
231 90285c3b 2019-01-08 stsp # update back to first commit and expect psi/mu to be deleted
232 90285c3b 2019-01-08 stsp echo "D psi/chi/tau" > $testroot/stdout.expected
233 90285c3b 2019-01-08 stsp echo "D psi/mu" >> $testroot/stdout.expected
234 90285c3b 2019-01-08 stsp echo "Updated to commit $first_rev" >> $testroot/stdout.expected
235 90285c3b 2019-01-08 stsp
236 90285c3b 2019-01-08 stsp (cd $testroot/wt && got update -c $first_rev > $testroot/stdout)
237 90285c3b 2019-01-08 stsp
238 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
239 e60e7f5b 2019-02-10 stsp ret="$?"
240 90285c3b 2019-01-08 stsp if [ "$?" != "0" ]; then
241 90285c3b 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
242 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
243 90285c3b 2019-01-08 stsp return 1
244 90285c3b 2019-01-08 stsp fi
245 90285c3b 2019-01-08 stsp
246 90285c3b 2019-01-08 stsp if [ -e $testroot/wt/psi ]; then
247 90285c3b 2019-01-08 stsp echo "removed dir psi still exists on disk" >&2
248 90285c3b 2019-01-08 stsp test_done "$testroot" "1"
249 90285c3b 2019-01-08 stsp return 1
250 90285c3b 2019-01-08 stsp fi
251 90285c3b 2019-01-08 stsp
252 90285c3b 2019-01-08 stsp test_done "$testroot" "0"
253 90285c3b 2019-01-08 stsp }
254 90285c3b 2019-01-08 stsp
255 4482e97b 2019-01-08 stsp function test_update_sibling_dirs_with_common_prefix {
256 4482e97b 2019-01-08 stsp local testroot=`test_init update_sibling_dirs_with_common_prefix`
257 81a30460 2019-01-08 stsp
258 81a30460 2019-01-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
259 e60e7f5b 2019-02-10 stsp ret="$?"
260 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
261 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
262 81a30460 2019-01-08 stsp return 1
263 81a30460 2019-01-08 stsp fi
264 81a30460 2019-01-08 stsp
265 81a30460 2019-01-08 stsp mkdir $testroot/repo/epsilon2
266 81a30460 2019-01-08 stsp echo mu > $testroot/repo/epsilon2/mu
267 81a30460 2019-01-08 stsp (cd $testroot/repo && git add epsilon2/mu)
268 81a30460 2019-01-08 stsp git_commit $testroot/repo -m "adding sibling of epsilon"
269 81a30460 2019-01-08 stsp echo change > $testroot/repo/epsilon/zeta
270 81a30460 2019-01-08 stsp git_commit $testroot/repo -m "changing epsilon/zeta"
271 81a30460 2019-01-08 stsp
272 81a30460 2019-01-08 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
273 81a30460 2019-01-08 stsp echo "A epsilon2/mu" >> $testroot/stdout.expected
274 81a30460 2019-01-08 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
275 81a30460 2019-01-08 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
276 81a30460 2019-01-08 stsp echo >> $testroot/stdout.expected
277 81a30460 2019-01-08 stsp
278 81a30460 2019-01-08 stsp (cd $testroot/wt && got update > $testroot/stdout)
279 81a30460 2019-01-08 stsp
280 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
281 e60e7f5b 2019-02-10 stsp ret="$?"
282 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
283 81a30460 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
284 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
285 81a30460 2019-01-08 stsp return 1
286 81a30460 2019-01-08 stsp fi
287 81a30460 2019-01-08 stsp
288 81a30460 2019-01-08 stsp echo "another change" > $testroot/repo/epsilon/zeta
289 81a30460 2019-01-08 stsp git_commit $testroot/repo -m "changing epsilon/zeta again"
290 81a30460 2019-01-08 stsp
291 81a30460 2019-01-08 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
292 81a30460 2019-01-08 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
293 81a30460 2019-01-08 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
294 81a30460 2019-01-08 stsp echo >> $testroot/stdout.expected
295 81a30460 2019-01-08 stsp
296 81a30460 2019-01-08 stsp # Bug: This update used to do delete/add epsilon2/mu again:
297 81a30460 2019-01-08 stsp # U epsilon/zeta
298 81a30460 2019-01-08 stsp # D epsilon2/mu <--- not intended
299 81a30460 2019-01-08 stsp # A epsilon2/mu <--- not intended
300 50952927 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
301 50952927 2019-01-12 stsp
302 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
303 e60e7f5b 2019-02-10 stsp ret="$?"
304 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
305 50952927 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
306 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
307 50952927 2019-01-12 stsp return 1
308 50952927 2019-01-12 stsp fi
309 50952927 2019-01-12 stsp
310 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
311 e60e7f5b 2019-02-10 stsp ret="$?"
312 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
313 50952927 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
314 50952927 2019-01-12 stsp fi
315 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
316 50952927 2019-01-12 stsp }
317 50952927 2019-01-12 stsp
318 50952927 2019-01-12 stsp function test_update_dir_with_dot_sibling {
319 50952927 2019-01-12 stsp local testroot=`test_init update_dir_with_dot_sibling`
320 50952927 2019-01-12 stsp
321 50952927 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
322 e60e7f5b 2019-02-10 stsp ret="$ret"
323 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
324 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
325 50952927 2019-01-12 stsp return 1
326 50952927 2019-01-12 stsp fi
327 50952927 2019-01-12 stsp
328 50952927 2019-01-12 stsp echo text > $testroot/repo/epsilon.txt
329 50952927 2019-01-12 stsp (cd $testroot/repo && git add epsilon.txt)
330 50952927 2019-01-12 stsp git_commit $testroot/repo -m "adding sibling of epsilon"
331 50952927 2019-01-12 stsp echo change > $testroot/repo/epsilon/zeta
332 50952927 2019-01-12 stsp git_commit $testroot/repo -m "changing epsilon/zeta"
333 50952927 2019-01-12 stsp
334 f5d3d7af 2019-02-05 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
335 f5d3d7af 2019-02-05 stsp echo "A epsilon.txt" >> $testroot/stdout.expected
336 50952927 2019-01-12 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
337 50952927 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
338 50952927 2019-01-12 stsp echo >> $testroot/stdout.expected
339 50952927 2019-01-12 stsp
340 81a30460 2019-01-08 stsp (cd $testroot/wt && got update > $testroot/stdout)
341 81a30460 2019-01-08 stsp
342 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
343 e60e7f5b 2019-02-10 stsp ret="$?"
344 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
345 81a30460 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
346 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
347 81a30460 2019-01-08 stsp return 1
348 81a30460 2019-01-08 stsp fi
349 81a30460 2019-01-08 stsp
350 50952927 2019-01-12 stsp echo "another change" > $testroot/repo/epsilon/zeta
351 50952927 2019-01-12 stsp git_commit $testroot/repo -m "changing epsilon/zeta again"
352 50952927 2019-01-12 stsp
353 50952927 2019-01-12 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
354 50952927 2019-01-12 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
355 50952927 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
356 50952927 2019-01-12 stsp echo >> $testroot/stdout.expected
357 50952927 2019-01-12 stsp
358 50952927 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
359 50952927 2019-01-12 stsp
360 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
361 e60e7f5b 2019-02-10 stsp ret="$?"
362 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
363 81a30460 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
364 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
365 81a30460 2019-01-08 stsp return 1
366 81a30460 2019-01-08 stsp fi
367 81a30460 2019-01-08 stsp
368 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
369 e60e7f5b 2019-02-10 stsp ret="$?"
370 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
371 50952927 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
372 50952927 2019-01-12 stsp fi
373 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
374 81a30460 2019-01-08 stsp }
375 46cee7a3 2019-01-12 stsp
376 46cee7a3 2019-01-12 stsp function test_update_moves_files_upwards {
377 46cee7a3 2019-01-12 stsp local testroot=`test_init update_moves_files_upwards`
378 46cee7a3 2019-01-12 stsp
379 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi
380 46cee7a3 2019-01-12 stsp echo mu > $testroot/repo/epsilon/psi/mu
381 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi/chi
382 46cee7a3 2019-01-12 stsp echo tau > $testroot/repo/epsilon/psi/chi/tau
383 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git add .)
384 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
385 46cee7a3 2019-01-12 stsp
386 46cee7a3 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
387 e60e7f5b 2019-02-10 stsp ret="$?"
388 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
389 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
390 46cee7a3 2019-01-12 stsp return 1
391 46cee7a3 2019-01-12 stsp fi
392 81a30460 2019-01-08 stsp
393 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/mu epsilon/mu)
394 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/chi/tau epsilon/psi/tau)
395 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "moving files upwards"
396 46cee7a3 2019-01-12 stsp
397 21908da4 2019-01-13 stsp echo "A epsilon/mu" > $testroot/stdout.expected
398 21908da4 2019-01-13 stsp echo "D epsilon/psi/chi/tau" >> $testroot/stdout.expected
399 46cee7a3 2019-01-12 stsp echo "D epsilon/psi/mu" >> $testroot/stdout.expected
400 bd4792ec 2019-01-13 stsp echo "A epsilon/psi/tau" >> $testroot/stdout.expected
401 46cee7a3 2019-01-12 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
402 46cee7a3 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
403 46cee7a3 2019-01-12 stsp echo >> $testroot/stdout.expected
404 46cee7a3 2019-01-12 stsp
405 46cee7a3 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
406 46cee7a3 2019-01-12 stsp
407 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
408 e60e7f5b 2019-02-10 stsp ret="$?"
409 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
410 46cee7a3 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
411 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
412 46cee7a3 2019-01-12 stsp return 1
413 46cee7a3 2019-01-12 stsp fi
414 46cee7a3 2019-01-12 stsp
415 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/chi ]; then
416 46cee7a3 2019-01-12 stsp echo "removed dir epsilon/psi/chi still exists on disk" >&2
417 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
418 46cee7a3 2019-01-12 stsp return 1
419 46cee7a3 2019-01-12 stsp fi
420 46cee7a3 2019-01-12 stsp
421 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/mu ]; then
422 46cee7a3 2019-01-12 stsp echo "removed file epsilon/psi/mu still exists on disk" >&2
423 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
424 46cee7a3 2019-01-12 stsp return 1
425 46cee7a3 2019-01-12 stsp fi
426 46cee7a3 2019-01-12 stsp
427 46cee7a3 2019-01-12 stsp test_done "$testroot" "0"
428 46cee7a3 2019-01-12 stsp }
429 46cee7a3 2019-01-12 stsp
430 46cee7a3 2019-01-12 stsp function test_update_moves_files_to_new_dir {
431 46cee7a3 2019-01-12 stsp local testroot=`test_init update_moves_files_to_new_dir`
432 46cee7a3 2019-01-12 stsp
433 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi
434 46cee7a3 2019-01-12 stsp echo mu > $testroot/repo/epsilon/psi/mu
435 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi/chi
436 46cee7a3 2019-01-12 stsp echo tau > $testroot/repo/epsilon/psi/chi/tau
437 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git add .)
438 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
439 46cee7a3 2019-01-12 stsp
440 46cee7a3 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
441 e60e7f5b 2019-02-10 stsp ret="$?"
442 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
443 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
444 46cee7a3 2019-01-12 stsp return 1
445 46cee7a3 2019-01-12 stsp fi
446 46cee7a3 2019-01-12 stsp
447 46cee7a3 2019-01-12 stsp mkdir -p $testroot/repo/epsilon-new/psi
448 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/mu epsilon-new/mu)
449 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/chi/tau epsilon-new/psi/tau)
450 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "moving files upwards"
451 46cee7a3 2019-01-12 stsp
452 f5d3d7af 2019-02-05 stsp echo "D epsilon/psi/chi/tau" > $testroot/stdout.expected
453 46cee7a3 2019-01-12 stsp echo "D epsilon/psi/mu" >> $testroot/stdout.expected
454 f5d3d7af 2019-02-05 stsp echo "A epsilon-new/mu" >> $testroot/stdout.expected
455 f5d3d7af 2019-02-05 stsp echo "A epsilon-new/psi/tau" >> $testroot/stdout.expected
456 46cee7a3 2019-01-12 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
457 46cee7a3 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
458 46cee7a3 2019-01-12 stsp echo >> $testroot/stdout.expected
459 46cee7a3 2019-01-12 stsp
460 46cee7a3 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
461 46cee7a3 2019-01-12 stsp
462 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
463 e60e7f5b 2019-02-10 stsp ret="$?"
464 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
465 46cee7a3 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
466 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
467 46cee7a3 2019-01-12 stsp return 1
468 46cee7a3 2019-01-12 stsp fi
469 46cee7a3 2019-01-12 stsp
470 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/chi ]; then
471 46cee7a3 2019-01-12 stsp echo "removed dir epsilon/psi/chi still exists on disk" >&2
472 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
473 46cee7a3 2019-01-12 stsp return 1
474 46cee7a3 2019-01-12 stsp fi
475 46cee7a3 2019-01-12 stsp
476 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/mu ]; then
477 46cee7a3 2019-01-12 stsp echo "removed file epsilon/psi/mu still exists on disk" >&2
478 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
479 4a1ddfc2 2019-01-12 stsp return 1
480 4a1ddfc2 2019-01-12 stsp fi
481 4a1ddfc2 2019-01-12 stsp
482 4a1ddfc2 2019-01-12 stsp test_done "$testroot" "0"
483 4a1ddfc2 2019-01-12 stsp }
484 4a1ddfc2 2019-01-12 stsp
485 4a1ddfc2 2019-01-12 stsp function test_update_creates_missing_parent {
486 1aad446a 2019-01-13 stsp local testroot=`test_init update_creates_missing_parent 1`
487 4a1ddfc2 2019-01-12 stsp
488 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/Makefile
489 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake.6
490 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake.c
491 4a1ddfc2 2019-01-12 stsp (cd $testroot/repo && git add .)
492 4a1ddfc2 2019-01-12 stsp git_commit $testroot/repo -m "adding initial snake tree"
493 4a1ddfc2 2019-01-12 stsp
494 4a1ddfc2 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
495 e60e7f5b 2019-02-10 stsp ret="$?"
496 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
497 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
498 4a1ddfc2 2019-01-12 stsp return 1
499 4a1ddfc2 2019-01-12 stsp fi
500 4a1ddfc2 2019-01-12 stsp
501 4a1ddfc2 2019-01-12 stsp mkdir -p $testroot/repo/snake
502 4a1ddfc2 2019-01-12 stsp (cd $testroot/repo && git mv Makefile snake.6 snake.c snake)
503 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake/move.c
504 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake/pathnames.h
505 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake/snake.h
506 4a1ddfc2 2019-01-12 stsp mkdir -p $testroot/repo/snscore
507 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snscore/Makefile
508 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snscore/snscore.c
509 4a1ddfc2 2019-01-12 stsp (cd $testroot/repo && git add .)
510 4a1ddfc2 2019-01-12 stsp git_commit $testroot/repo -m "restructuring snake tree"
511 4a1ddfc2 2019-01-12 stsp
512 4a1ddfc2 2019-01-12 stsp echo "D Makefile" > $testroot/stdout.expected
513 4a1ddfc2 2019-01-12 stsp echo "A snake/Makefile" >> $testroot/stdout.expected
514 4a1ddfc2 2019-01-12 stsp echo "A snake/move.c" >> $testroot/stdout.expected
515 4a1ddfc2 2019-01-12 stsp echo "A snake/pathnames.h" >> $testroot/stdout.expected
516 4a1ddfc2 2019-01-12 stsp echo "A snake/snake.6" >> $testroot/stdout.expected
517 4a1ddfc2 2019-01-12 stsp echo "A snake/snake.c" >> $testroot/stdout.expected
518 4a1ddfc2 2019-01-12 stsp echo "A snake/snake.h" >> $testroot/stdout.expected
519 18831e78 2019-02-10 stsp echo "D snake.6" >> $testroot/stdout.expected
520 18831e78 2019-02-10 stsp echo "D snake.c" >> $testroot/stdout.expected
521 bd4792ec 2019-01-13 stsp echo "A snscore/Makefile" >> $testroot/stdout.expected
522 bd4792ec 2019-01-13 stsp echo "A snscore/snscore.c" >> $testroot/stdout.expected
523 bd4792ec 2019-01-13 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
524 bd4792ec 2019-01-13 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
525 bd4792ec 2019-01-13 stsp echo >> $testroot/stdout.expected
526 bd4792ec 2019-01-13 stsp
527 bd4792ec 2019-01-13 stsp (cd $testroot/wt && got update > $testroot/stdout)
528 bd4792ec 2019-01-13 stsp
529 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
530 e60e7f5b 2019-02-10 stsp ret="$?"
531 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
532 e60e7f5b 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
533 bd4792ec 2019-01-13 stsp fi
534 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
535 bd4792ec 2019-01-13 stsp }
536 bd4792ec 2019-01-13 stsp
537 bd4792ec 2019-01-13 stsp function test_update_creates_missing_parent_with_subdir {
538 1aad446a 2019-01-13 stsp local testroot=`test_init update_creates_missing_parent_with_subdir 1`
539 bd4792ec 2019-01-13 stsp
540 bd4792ec 2019-01-13 stsp touch $testroot/repo/Makefile
541 bd4792ec 2019-01-13 stsp touch $testroot/repo/snake.6
542 bd4792ec 2019-01-13 stsp touch $testroot/repo/snake.c
543 bd4792ec 2019-01-13 stsp (cd $testroot/repo && git add .)
544 bd4792ec 2019-01-13 stsp git_commit $testroot/repo -m "adding initial snake tree"
545 bd4792ec 2019-01-13 stsp
546 bd4792ec 2019-01-13 stsp got checkout $testroot/repo $testroot/wt > /dev/null
547 e60e7f5b 2019-02-10 stsp ret="$?"
548 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
549 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
550 bd4792ec 2019-01-13 stsp return 1
551 bd4792ec 2019-01-13 stsp fi
552 bd4792ec 2019-01-13 stsp
553 bd4792ec 2019-01-13 stsp mkdir -p $testroot/repo/sss/snake
554 bd4792ec 2019-01-13 stsp (cd $testroot/repo && git mv Makefile snake.6 snake.c sss/snake)
555 bd4792ec 2019-01-13 stsp touch $testroot/repo/sss/snake/move.c
556 bd4792ec 2019-01-13 stsp touch $testroot/repo/sss/snake/pathnames.h
557 bd4792ec 2019-01-13 stsp touch $testroot/repo/sss/snake/snake.h
558 bd4792ec 2019-01-13 stsp mkdir -p $testroot/repo/snscore
559 bd4792ec 2019-01-13 stsp touch $testroot/repo/snscore/Makefile
560 bd4792ec 2019-01-13 stsp touch $testroot/repo/snscore/snscore.c
561 bd4792ec 2019-01-13 stsp (cd $testroot/repo && git add .)
562 bd4792ec 2019-01-13 stsp git_commit $testroot/repo -m "restructuring snake tree"
563 bd4792ec 2019-01-13 stsp
564 bd4792ec 2019-01-13 stsp echo "D Makefile" > $testroot/stdout.expected
565 4a1ddfc2 2019-01-12 stsp echo "D snake.6" >> $testroot/stdout.expected
566 4a1ddfc2 2019-01-12 stsp echo "D snake.c" >> $testroot/stdout.expected
567 4a1ddfc2 2019-01-12 stsp echo "A snscore/Makefile" >> $testroot/stdout.expected
568 4a1ddfc2 2019-01-12 stsp echo "A snscore/snscore.c" >> $testroot/stdout.expected
569 bd4792ec 2019-01-13 stsp echo "A sss/snake/Makefile" >> $testroot/stdout.expected
570 bd4792ec 2019-01-13 stsp echo "A sss/snake/move.c" >> $testroot/stdout.expected
571 bd4792ec 2019-01-13 stsp echo "A sss/snake/pathnames.h" >> $testroot/stdout.expected
572 bd4792ec 2019-01-13 stsp echo "A sss/snake/snake.6" >> $testroot/stdout.expected
573 bd4792ec 2019-01-13 stsp echo "A sss/snake/snake.c" >> $testroot/stdout.expected
574 bd4792ec 2019-01-13 stsp echo "A sss/snake/snake.h" >> $testroot/stdout.expected
575 4a1ddfc2 2019-01-12 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
576 4a1ddfc2 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
577 4a1ddfc2 2019-01-12 stsp echo >> $testroot/stdout.expected
578 4a1ddfc2 2019-01-12 stsp
579 4a1ddfc2 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
580 4a1ddfc2 2019-01-12 stsp
581 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
582 e60e7f5b 2019-02-10 stsp ret="$?"
583 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
584 4a1ddfc2 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
585 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
586 46cee7a3 2019-01-12 stsp return 1
587 46cee7a3 2019-01-12 stsp fi
588 46cee7a3 2019-01-12 stsp
589 46cee7a3 2019-01-12 stsp test_done "$testroot" "0"
590 46cee7a3 2019-01-12 stsp }
591 21908da4 2019-01-13 stsp
592 21908da4 2019-01-13 stsp function test_update_file_in_subsubdir {
593 1aad446a 2019-01-13 stsp local testroot=`test_init update_fle_in_subsubdir 1`
594 46cee7a3 2019-01-12 stsp
595 21908da4 2019-01-13 stsp touch $testroot/repo/Makefile
596 21908da4 2019-01-13 stsp mkdir -p $testroot/repo/altq
597 21908da4 2019-01-13 stsp touch $testroot/repo/altq/if_altq.h
598 21908da4 2019-01-13 stsp mkdir -p $testroot/repo/arch/alpha
599 21908da4 2019-01-13 stsp touch $testroot/repo/arch/alpha/Makefile
600 21908da4 2019-01-13 stsp (cd $testroot/repo && git add .)
601 21908da4 2019-01-13 stsp git_commit $testroot/repo -m "adding initial tree"
602 21908da4 2019-01-13 stsp
603 21908da4 2019-01-13 stsp got checkout $testroot/repo $testroot/wt > /dev/null
604 e60e7f5b 2019-02-10 stsp ret="$?"
605 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
606 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
607 21908da4 2019-01-13 stsp return 1
608 21908da4 2019-01-13 stsp fi
609 21908da4 2019-01-13 stsp
610 21908da4 2019-01-13 stsp echo change > $testroot/repo/arch/alpha/Makefile
611 21908da4 2019-01-13 stsp (cd $testroot/repo && git add .)
612 21908da4 2019-01-13 stsp git_commit $testroot/repo -m "changed a file"
613 21908da4 2019-01-13 stsp
614 21908da4 2019-01-13 stsp echo "U arch/alpha/Makefile" > $testroot/stdout.expected
615 21908da4 2019-01-13 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
616 21908da4 2019-01-13 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
617 21908da4 2019-01-13 stsp echo >> $testroot/stdout.expected
618 21908da4 2019-01-13 stsp
619 21908da4 2019-01-13 stsp (cd $testroot/wt && got update > $testroot/stdout)
620 21908da4 2019-01-13 stsp
621 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
622 e60e7f5b 2019-02-10 stsp ret="$?"
623 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
624 21908da4 2019-01-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
625 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
626 21908da4 2019-01-13 stsp return 1
627 21908da4 2019-01-13 stsp fi
628 21908da4 2019-01-13 stsp
629 21908da4 2019-01-13 stsp test_done "$testroot" "0"
630 21908da4 2019-01-13 stsp }
631 6353ad76 2019-02-08 stsp
632 6353ad76 2019-02-08 stsp function test_update_merges_file_edits {
633 6353ad76 2019-02-08 stsp local testroot=`test_init update_merges_file_edits`
634 6353ad76 2019-02-08 stsp
635 6353ad76 2019-02-08 stsp echo "1" > $testroot/repo/numbers
636 6353ad76 2019-02-08 stsp echo "2" >> $testroot/repo/numbers
637 6353ad76 2019-02-08 stsp echo "3" >> $testroot/repo/numbers
638 6353ad76 2019-02-08 stsp echo "4" >> $testroot/repo/numbers
639 6353ad76 2019-02-08 stsp echo "5" >> $testroot/repo/numbers
640 6353ad76 2019-02-08 stsp echo "6" >> $testroot/repo/numbers
641 6353ad76 2019-02-08 stsp echo "7" >> $testroot/repo/numbers
642 6353ad76 2019-02-08 stsp echo "8" >> $testroot/repo/numbers
643 6353ad76 2019-02-08 stsp (cd $testroot/repo && git add numbers)
644 6353ad76 2019-02-08 stsp git_commit $testroot/repo -m "added numbers file"
645 21908da4 2019-01-13 stsp
646 6353ad76 2019-02-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
647 e60e7f5b 2019-02-10 stsp ret="$?"
648 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
649 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
650 6353ad76 2019-02-08 stsp return 1
651 6353ad76 2019-02-08 stsp fi
652 6353ad76 2019-02-08 stsp
653 6353ad76 2019-02-08 stsp echo "modified alpha" > $testroot/repo/alpha
654 6353ad76 2019-02-08 stsp echo "modified beta" > $testroot/repo/beta
655 6353ad76 2019-02-08 stsp sed -i 's/2/22/' $testroot/repo/numbers
656 6353ad76 2019-02-08 stsp git_commit $testroot/repo -m "modified 3 files"
657 6353ad76 2019-02-08 stsp
658 6353ad76 2019-02-08 stsp echo "modified alpha, too" > $testroot/wt/alpha
659 6353ad76 2019-02-08 stsp touch $testroot/wt/beta
660 6353ad76 2019-02-08 stsp sed -i 's/7/77/' $testroot/wt/numbers
661 6353ad76 2019-02-08 stsp
662 6353ad76 2019-02-08 stsp echo "C alpha" > $testroot/stdout.expected
663 6353ad76 2019-02-08 stsp echo "U beta" >> $testroot/stdout.expected
664 6353ad76 2019-02-08 stsp echo "G numbers" >> $testroot/stdout.expected
665 6353ad76 2019-02-08 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
666 6353ad76 2019-02-08 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
667 6353ad76 2019-02-08 stsp echo >> $testroot/stdout.expected
668 6353ad76 2019-02-08 stsp
669 6353ad76 2019-02-08 stsp (cd $testroot/wt && got update > $testroot/stdout)
670 6353ad76 2019-02-08 stsp
671 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
672 e60e7f5b 2019-02-10 stsp ret="$?"
673 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
674 6353ad76 2019-02-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
675 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
676 6353ad76 2019-02-08 stsp return 1
677 6353ad76 2019-02-08 stsp fi
678 6353ad76 2019-02-08 stsp
679 6353ad76 2019-02-08 stsp echo -n "<<<<<<< commit " > $testroot/content.expected
680 6353ad76 2019-02-08 stsp git_show_head $testroot/repo >> $testroot/content.expected
681 6353ad76 2019-02-08 stsp echo >> $testroot/content.expected
682 6353ad76 2019-02-08 stsp echo "modified alpha" >> $testroot/content.expected
683 d136cfcb 2019-10-12 stsp echo "|||||||" >> $testroot/content.expected
684 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
685 6353ad76 2019-02-08 stsp echo "=======" >> $testroot/content.expected
686 6353ad76 2019-02-08 stsp echo "modified alpha, too" >> $testroot/content.expected
687 6353ad76 2019-02-08 stsp echo '>>>>>>> alpha' >> $testroot/content.expected
688 6353ad76 2019-02-08 stsp echo "modified beta" >> $testroot/content.expected
689 6353ad76 2019-02-08 stsp echo "1" >> $testroot/content.expected
690 6353ad76 2019-02-08 stsp echo "22" >> $testroot/content.expected
691 6353ad76 2019-02-08 stsp echo "3" >> $testroot/content.expected
692 6353ad76 2019-02-08 stsp echo "4" >> $testroot/content.expected
693 6353ad76 2019-02-08 stsp echo "5" >> $testroot/content.expected
694 6353ad76 2019-02-08 stsp echo "6" >> $testroot/content.expected
695 6353ad76 2019-02-08 stsp echo "77" >> $testroot/content.expected
696 6353ad76 2019-02-08 stsp echo "8" >> $testroot/content.expected
697 6353ad76 2019-02-08 stsp
698 6353ad76 2019-02-08 stsp cat $testroot/wt/alpha > $testroot/content
699 6353ad76 2019-02-08 stsp cat $testroot/wt/beta >> $testroot/content
700 6353ad76 2019-02-08 stsp cat $testroot/wt/numbers >> $testroot/content
701 6353ad76 2019-02-08 stsp
702 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
703 6353ad76 2019-02-08 stsp ret="$?"
704 6353ad76 2019-02-08 stsp if [ "$ret" != "0" ]; then
705 6353ad76 2019-02-08 stsp diff -u $testroot/content.expected $testroot/content
706 68ed9ba5 2019-02-10 stsp fi
707 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
708 68ed9ba5 2019-02-10 stsp }
709 68ed9ba5 2019-02-10 stsp
710 68ed9ba5 2019-02-10 stsp function test_update_keeps_xbit {
711 68ed9ba5 2019-02-10 stsp local testroot=`test_init update_keeps_xbit 1`
712 68ed9ba5 2019-02-10 stsp
713 68ed9ba5 2019-02-10 stsp touch $testroot/repo/xfile
714 68ed9ba5 2019-02-10 stsp chmod +x $testroot/repo/xfile
715 68ed9ba5 2019-02-10 stsp (cd $testroot/repo && git add .)
716 68ed9ba5 2019-02-10 stsp git_commit $testroot/repo -m "adding executable file"
717 68ed9ba5 2019-02-10 stsp
718 68ed9ba5 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > $testroot/stdout
719 68ed9ba5 2019-02-10 stsp ret="$?"
720 68ed9ba5 2019-02-10 stsp if [ "$ret" != "0" ]; then
721 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
722 68ed9ba5 2019-02-10 stsp return 1
723 68ed9ba5 2019-02-10 stsp fi
724 68ed9ba5 2019-02-10 stsp
725 68ed9ba5 2019-02-10 stsp echo foo > $testroot/repo/xfile
726 68ed9ba5 2019-02-10 stsp git_commit $testroot/repo -m "changed executable file"
727 68ed9ba5 2019-02-10 stsp
728 68ed9ba5 2019-02-10 stsp echo "U xfile" > $testroot/stdout.expected
729 68ed9ba5 2019-02-10 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
730 68ed9ba5 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
731 68ed9ba5 2019-02-10 stsp echo >> $testroot/stdout.expected
732 68ed9ba5 2019-02-10 stsp
733 68ed9ba5 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
734 68ed9ba5 2019-02-10 stsp ret="$?"
735 68ed9ba5 2019-02-10 stsp if [ "$ret" != "0" ]; then
736 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
737 68ed9ba5 2019-02-10 stsp return 1
738 6353ad76 2019-02-08 stsp fi
739 68ed9ba5 2019-02-10 stsp
740 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
741 68ed9ba5 2019-02-10 stsp ret="$?"
742 68ed9ba5 2019-02-10 stsp if [ "$ret" != "0" ]; then
743 68ed9ba5 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
744 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
745 68ed9ba5 2019-02-10 stsp return 1
746 68ed9ba5 2019-02-10 stsp fi
747 68ed9ba5 2019-02-10 stsp
748 68ed9ba5 2019-02-10 stsp ls -l $testroot/wt/xfile | grep -q '^-rwx'
749 68ed9ba5 2019-02-10 stsp ret="$?"
750 68ed9ba5 2019-02-10 stsp if [ "$ret" != "0" ]; then
751 68ed9ba5 2019-02-10 stsp echo "file is not executable" >&2
752 68ed9ba5 2019-02-10 stsp ls -l $testroot/wt/xfile >&2
753 68ed9ba5 2019-02-10 stsp fi
754 6353ad76 2019-02-08 stsp test_done "$testroot" "$ret"
755 6353ad76 2019-02-08 stsp }
756 ba8a0d4d 2019-02-10 stsp
757 ba8a0d4d 2019-02-10 stsp function test_update_clears_xbit {
758 ba8a0d4d 2019-02-10 stsp local testroot=`test_init update_clears_xbit 1`
759 ba8a0d4d 2019-02-10 stsp
760 ba8a0d4d 2019-02-10 stsp touch $testroot/repo/xfile
761 ba8a0d4d 2019-02-10 stsp chmod +x $testroot/repo/xfile
762 ba8a0d4d 2019-02-10 stsp (cd $testroot/repo && git add .)
763 ba8a0d4d 2019-02-10 stsp git_commit $testroot/repo -m "adding executable file"
764 6353ad76 2019-02-08 stsp
765 ba8a0d4d 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > $testroot/stdout
766 ba8a0d4d 2019-02-10 stsp ret="$?"
767 ba8a0d4d 2019-02-10 stsp if [ "$ret" != "0" ]; then
768 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
769 ba8a0d4d 2019-02-10 stsp return 1
770 ba8a0d4d 2019-02-10 stsp fi
771 ba8a0d4d 2019-02-10 stsp
772 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile | grep -q '^-rwx'
773 ba8a0d4d 2019-02-10 stsp ret="$?"
774 ba8a0d4d 2019-02-10 stsp if [ "$ret" != "0" ]; then
775 ba8a0d4d 2019-02-10 stsp echo "file is not executable" >&2
776 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile >&2
777 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
778 ba8a0d4d 2019-02-10 stsp return 1
779 ba8a0d4d 2019-02-10 stsp fi
780 ba8a0d4d 2019-02-10 stsp
781 ba8a0d4d 2019-02-10 stsp # XXX git seems to require a file edit when flipping the x bit?
782 ba8a0d4d 2019-02-10 stsp echo foo > $testroot/repo/xfile
783 ba8a0d4d 2019-02-10 stsp chmod -x $testroot/repo/xfile
784 ba8a0d4d 2019-02-10 stsp git_commit $testroot/repo -m "not an executable file anymore"
785 ba8a0d4d 2019-02-10 stsp
786 ba8a0d4d 2019-02-10 stsp echo "U xfile" > $testroot/stdout.expected
787 ba8a0d4d 2019-02-10 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
788 ba8a0d4d 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
789 ba8a0d4d 2019-02-10 stsp echo >> $testroot/stdout.expected
790 ba8a0d4d 2019-02-10 stsp
791 ba8a0d4d 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
792 ba8a0d4d 2019-02-10 stsp ret="$?"
793 ba8a0d4d 2019-02-10 stsp if [ "$ret" != "0" ]; then
794 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
795 ba8a0d4d 2019-02-10 stsp return 1
796 ba8a0d4d 2019-02-10 stsp fi
797 ba8a0d4d 2019-02-10 stsp
798 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
799 ba8a0d4d 2019-02-10 stsp ret="$?"
800 ba8a0d4d 2019-02-10 stsp if [ "$ret" != "0" ]; then
801 ba8a0d4d 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
802 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
803 ba8a0d4d 2019-02-10 stsp return 1
804 ba8a0d4d 2019-02-10 stsp fi
805 ba8a0d4d 2019-02-10 stsp
806 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile | grep -q '^-rw-'
807 ba8a0d4d 2019-02-10 stsp ret="$?"
808 ba8a0d4d 2019-02-10 stsp if [ "$ret" != "0" ]; then
809 ba8a0d4d 2019-02-10 stsp echo "file is unexpectedly executable" >&2
810 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile >&2
811 ba8a0d4d 2019-02-10 stsp fi
812 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
813 ba8a0d4d 2019-02-10 stsp }
814 a378724f 2019-02-10 stsp
815 a378724f 2019-02-10 stsp function test_update_restores_missing_file {
816 a378724f 2019-02-10 stsp local testroot=`test_init update_restores_missing_file`
817 a378724f 2019-02-10 stsp
818 a378724f 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
819 a378724f 2019-02-10 stsp ret="$?"
820 a378724f 2019-02-10 stsp if [ "$ret" != "0" ]; then
821 a378724f 2019-02-10 stsp test_done "$testroot" "$ret"
822 a378724f 2019-02-10 stsp return 1
823 a378724f 2019-02-10 stsp fi
824 ba8a0d4d 2019-02-10 stsp
825 a378724f 2019-02-10 stsp rm $testroot/wt/alpha
826 a378724f 2019-02-10 stsp
827 a378724f 2019-02-10 stsp echo "! alpha" > $testroot/stdout.expected
828 1545c615 2019-02-10 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
829 1545c615 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
830 1545c615 2019-02-10 stsp echo >> $testroot/stdout.expected
831 a378724f 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
832 a378724f 2019-02-10 stsp
833 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
834 a378724f 2019-02-10 stsp ret="$?"
835 a378724f 2019-02-10 stsp if [ "$ret" != "0" ]; then
836 a378724f 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
837 a378724f 2019-02-10 stsp test_done "$testroot" "$ret"
838 a378724f 2019-02-10 stsp return 1
839 a378724f 2019-02-10 stsp fi
840 a378724f 2019-02-10 stsp
841 a378724f 2019-02-10 stsp echo "alpha" > $testroot/content.expected
842 a378724f 2019-02-10 stsp
843 a378724f 2019-02-10 stsp cat $testroot/wt/alpha > $testroot/content
844 1430b4e0 2019-03-27 stsp
845 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
846 1430b4e0 2019-03-27 stsp ret="$?"
847 1430b4e0 2019-03-27 stsp if [ "$ret" != "0" ]; then
848 1430b4e0 2019-03-27 stsp diff -u $testroot/content.expected $testroot/content
849 1430b4e0 2019-03-27 stsp fi
850 1430b4e0 2019-03-27 stsp test_done "$testroot" "$ret"
851 1430b4e0 2019-03-27 stsp }
852 1430b4e0 2019-03-27 stsp
853 085d5bcf 2019-03-27 stsp function test_update_conflict_wt_add_vs_repo_add {
854 085d5bcf 2019-03-27 stsp local testroot=`test_init update_conflict_wt_add_vs_repo_add`
855 1430b4e0 2019-03-27 stsp
856 1430b4e0 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
857 1430b4e0 2019-03-27 stsp ret="$?"
858 1430b4e0 2019-03-27 stsp if [ "$ret" != "0" ]; then
859 1430b4e0 2019-03-27 stsp test_done "$testroot" "$ret"
860 1430b4e0 2019-03-27 stsp return 1
861 1430b4e0 2019-03-27 stsp fi
862 1430b4e0 2019-03-27 stsp
863 1430b4e0 2019-03-27 stsp echo "new" > $testroot/repo/gamma/new
864 1430b4e0 2019-03-27 stsp (cd $testroot/repo && git add .)
865 1430b4e0 2019-03-27 stsp git_commit $testroot/repo -m "adding a new file"
866 1430b4e0 2019-03-27 stsp
867 1430b4e0 2019-03-27 stsp echo "also new" > $testroot/wt/gamma/new
868 1430b4e0 2019-03-27 stsp (cd $testroot/wt && got add gamma/new >/dev/null)
869 1430b4e0 2019-03-27 stsp
870 1430b4e0 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
871 a378724f 2019-02-10 stsp
872 1430b4e0 2019-03-27 stsp echo "C gamma/new" > $testroot/stdout.expected
873 1430b4e0 2019-03-27 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
874 1430b4e0 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
875 1430b4e0 2019-03-27 stsp echo >> $testroot/stdout.expected
876 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
877 1430b4e0 2019-03-27 stsp ret="$?"
878 1430b4e0 2019-03-27 stsp if [ "$ret" != "0" ]; then
879 1430b4e0 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
880 1430b4e0 2019-03-27 stsp test_done "$testroot" "$ret"
881 1430b4e0 2019-03-27 stsp return 1
882 1430b4e0 2019-03-27 stsp fi
883 1430b4e0 2019-03-27 stsp
884 1430b4e0 2019-03-27 stsp echo -n "<<<<<<< commit " > $testroot/content.expected
885 1430b4e0 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/content.expected
886 1430b4e0 2019-03-27 stsp echo >> $testroot/content.expected
887 1430b4e0 2019-03-27 stsp echo "new" >> $testroot/content.expected
888 1430b4e0 2019-03-27 stsp echo "=======" >> $testroot/content.expected
889 1430b4e0 2019-03-27 stsp echo "also new" >> $testroot/content.expected
890 1430b4e0 2019-03-27 stsp echo '>>>>>>> gamma/new' >> $testroot/content.expected
891 1430b4e0 2019-03-27 stsp
892 1430b4e0 2019-03-27 stsp cat $testroot/wt/gamma/new > $testroot/content
893 1430b4e0 2019-03-27 stsp
894 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
895 a378724f 2019-02-10 stsp ret="$?"
896 a378724f 2019-02-10 stsp if [ "$ret" != "0" ]; then
897 a378724f 2019-02-10 stsp diff -u $testroot/content.expected $testroot/content
898 3165301c 2019-03-27 stsp test_done "$testroot" "$ret"
899 3165301c 2019-03-27 stsp return 1
900 3165301c 2019-03-27 stsp fi
901 3165301c 2019-03-27 stsp
902 3165301c 2019-03-27 stsp # resolve the conflict
903 3165301c 2019-03-27 stsp echo "new and also new" > $testroot/wt/gamma/new
904 3165301c 2019-03-27 stsp echo 'M gamma/new' > $testroot/stdout.expected
905 3165301c 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
906 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
907 3165301c 2019-03-27 stsp ret="$?"
908 3165301c 2019-03-27 stsp if [ "$ret" != "0" ]; then
909 3165301c 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
910 a378724f 2019-02-10 stsp fi
911 a378724f 2019-02-10 stsp test_done "$testroot" "$ret"
912 a378724f 2019-02-10 stsp }
913 708d8e67 2019-03-27 stsp
914 085d5bcf 2019-03-27 stsp function test_update_conflict_wt_edit_vs_repo_rm {
915 085d5bcf 2019-03-27 stsp local testroot=`test_init update_conflict_wt_edit_vs_repo_rm`
916 708d8e67 2019-03-27 stsp
917 708d8e67 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
918 708d8e67 2019-03-27 stsp ret="$?"
919 708d8e67 2019-03-27 stsp if [ "$ret" != "0" ]; then
920 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
921 708d8e67 2019-03-27 stsp return 1
922 708d8e67 2019-03-27 stsp fi
923 708d8e67 2019-03-27 stsp
924 708d8e67 2019-03-27 stsp (cd $testroot/repo && git rm -q beta)
925 708d8e67 2019-03-27 stsp git_commit $testroot/repo -m "removing a file"
926 708d8e67 2019-03-27 stsp
927 708d8e67 2019-03-27 stsp echo "modified beta" > $testroot/wt/beta
928 a378724f 2019-02-10 stsp
929 708d8e67 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
930 708d8e67 2019-03-27 stsp
931 fc6346c4 2019-03-27 stsp echo "G beta" > $testroot/stdout.expected
932 708d8e67 2019-03-27 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
933 708d8e67 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
934 708d8e67 2019-03-27 stsp echo >> $testroot/stdout.expected
935 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
936 708d8e67 2019-03-27 stsp ret="$?"
937 708d8e67 2019-03-27 stsp if [ "$ret" != "0" ]; then
938 708d8e67 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
939 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
940 708d8e67 2019-03-27 stsp return 1
941 708d8e67 2019-03-27 stsp fi
942 708d8e67 2019-03-27 stsp
943 708d8e67 2019-03-27 stsp echo "modified beta" > $testroot/content.expected
944 708d8e67 2019-03-27 stsp
945 708d8e67 2019-03-27 stsp cat $testroot/wt/beta > $testroot/content
946 708d8e67 2019-03-27 stsp
947 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
948 708d8e67 2019-03-27 stsp ret="$?"
949 708d8e67 2019-03-27 stsp if [ "$ret" != "0" ]; then
950 708d8e67 2019-03-27 stsp diff -u $testroot/content.expected $testroot/content
951 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
952 708d8e67 2019-03-27 stsp return 1
953 708d8e67 2019-03-27 stsp fi
954 708d8e67 2019-03-27 stsp
955 fc6346c4 2019-03-27 stsp # beta is now an added file... we don't flag tree conflicts yet
956 fc6346c4 2019-03-27 stsp echo 'A beta' > $testroot/stdout.expected
957 13d9040b 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
958 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
959 13d9040b 2019-03-27 stsp ret="$?"
960 13d9040b 2019-03-27 stsp if [ "$ret" != "0" ]; then
961 13d9040b 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
962 13d9040b 2019-03-27 stsp fi
963 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
964 13d9040b 2019-03-27 stsp }
965 13d9040b 2019-03-27 stsp
966 13d9040b 2019-03-27 stsp function test_update_conflict_wt_rm_vs_repo_edit {
967 13d9040b 2019-03-27 stsp local testroot=`test_init update_conflict_wt_rm_vs_repo_edit`
968 13d9040b 2019-03-27 stsp
969 13d9040b 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
970 13d9040b 2019-03-27 stsp ret="$?"
971 13d9040b 2019-03-27 stsp if [ "$ret" != "0" ]; then
972 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
973 13d9040b 2019-03-27 stsp return 1
974 13d9040b 2019-03-27 stsp fi
975 13d9040b 2019-03-27 stsp
976 13d9040b 2019-03-27 stsp echo "modified beta" > $testroot/repo/beta
977 13d9040b 2019-03-27 stsp git_commit $testroot/repo -m "modified a file"
978 13d9040b 2019-03-27 stsp
979 13d9040b 2019-03-27 stsp (cd $testroot/wt && got rm beta > /dev/null)
980 13d9040b 2019-03-27 stsp
981 13d9040b 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
982 13d9040b 2019-03-27 stsp
983 13d9040b 2019-03-27 stsp echo "G beta" > $testroot/stdout.expected
984 13d9040b 2019-03-27 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
985 13d9040b 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
986 13d9040b 2019-03-27 stsp echo >> $testroot/stdout.expected
987 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
988 13d9040b 2019-03-27 stsp ret="$?"
989 13d9040b 2019-03-27 stsp if [ "$ret" != "0" ]; then
990 13d9040b 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
991 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
992 13d9040b 2019-03-27 stsp return 1
993 13d9040b 2019-03-27 stsp fi
994 13d9040b 2019-03-27 stsp
995 13d9040b 2019-03-27 stsp # beta remains a deleted file... we don't flag tree conflicts yet
996 13d9040b 2019-03-27 stsp echo 'D beta' > $testroot/stdout.expected
997 708d8e67 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
998 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
999 708d8e67 2019-03-27 stsp ret="$?"
1000 708d8e67 2019-03-27 stsp if [ "$ret" != "0" ]; then
1001 708d8e67 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1002 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
1003 13d9040b 2019-03-27 stsp return 1
1004 708d8e67 2019-03-27 stsp fi
1005 13d9040b 2019-03-27 stsp
1006 13d9040b 2019-03-27 stsp # 'got diff' should show post-update contents of beta being deleted
1007 13d9040b 2019-03-27 stsp local head_rev=`git_show_head $testroot/repo`
1008 13d9040b 2019-03-27 stsp echo "diff $head_rev $testroot/wt" > $testroot/stdout.expected
1009 13d9040b 2019-03-27 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1010 13d9040b 2019-03-27 stsp got tree -r $testroot/repo -i | grep 'beta$' | cut -d' ' -f 1 \
1011 13d9040b 2019-03-27 stsp >> $testroot/stdout.expected
1012 13d9040b 2019-03-27 stsp echo 'file + /dev/null' >> $testroot/stdout.expected
1013 13d9040b 2019-03-27 stsp echo '--- beta' >> $testroot/stdout.expected
1014 13d9040b 2019-03-27 stsp echo '+++ beta' >> $testroot/stdout.expected
1015 13d9040b 2019-03-27 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
1016 13d9040b 2019-03-27 stsp echo '-modified beta' >> $testroot/stdout.expected
1017 13d9040b 2019-03-27 stsp
1018 13d9040b 2019-03-27 stsp (cd $testroot/wt && got diff > $testroot/stdout)
1019 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1020 13d9040b 2019-03-27 stsp ret="$?"
1021 13d9040b 2019-03-27 stsp if [ "$ret" != "0" ]; then
1022 13d9040b 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1023 13d9040b 2019-03-27 stsp fi
1024 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
1025 66b11bf5 2019-03-27 stsp }
1026 66b11bf5 2019-03-27 stsp
1027 66b11bf5 2019-03-27 stsp function test_update_conflict_wt_rm_vs_repo_rm {
1028 66b11bf5 2019-03-27 stsp local testroot=`test_init update_conflict_wt_rm_vs_repo_rm`
1029 66b11bf5 2019-03-27 stsp
1030 66b11bf5 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1031 66b11bf5 2019-03-27 stsp ret="$?"
1032 66b11bf5 2019-03-27 stsp if [ "$ret" != "0" ]; then
1033 66b11bf5 2019-03-27 stsp test_done "$testroot" "$ret"
1034 66b11bf5 2019-03-27 stsp return 1
1035 66b11bf5 2019-03-27 stsp fi
1036 66b11bf5 2019-03-27 stsp
1037 66b11bf5 2019-03-27 stsp (cd $testroot/repo && git rm -q beta)
1038 66b11bf5 2019-03-27 stsp git_commit $testroot/repo -m "removing a file"
1039 66b11bf5 2019-03-27 stsp
1040 66b11bf5 2019-03-27 stsp (cd $testroot/wt && got rm beta > /dev/null)
1041 66b11bf5 2019-03-27 stsp
1042 66b11bf5 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
1043 66b11bf5 2019-03-27 stsp
1044 66b11bf5 2019-03-27 stsp echo "D beta" > $testroot/stdout.expected
1045 66b11bf5 2019-03-27 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1046 66b11bf5 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1047 66b11bf5 2019-03-27 stsp echo >> $testroot/stdout.expected
1048 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1049 66b11bf5 2019-03-27 stsp ret="$?"
1050 66b11bf5 2019-03-27 stsp if [ "$ret" != "0" ]; then
1051 66b11bf5 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1052 66b11bf5 2019-03-27 stsp test_done "$testroot" "$ret"
1053 66b11bf5 2019-03-27 stsp return 1
1054 66b11bf5 2019-03-27 stsp fi
1055 66b11bf5 2019-03-27 stsp
1056 66b11bf5 2019-03-27 stsp # beta is now gone... we don't flag tree conflicts yet
1057 2a06fe5f 2019-08-24 stsp echo "N beta" > $testroot/stdout.expected
1058 54817d72 2019-07-27 stsp echo -n > $testroot/stderr.expected
1059 54817d72 2019-07-27 stsp (cd $testroot/wt && got status beta > $testroot/stdout \
1060 54817d72 2019-07-27 stsp 2> $testroot/stderr)
1061 54817d72 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1062 54817d72 2019-07-27 stsp ret="$?"
1063 54817d72 2019-07-27 stsp if [ "$ret" != "0" ]; then
1064 54817d72 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1065 54817d72 2019-07-27 stsp test_done "$testroot" "$ret"
1066 54817d72 2019-07-27 stsp return 1
1067 54817d72 2019-07-27 stsp fi
1068 8d301dd9 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1069 66b11bf5 2019-03-27 stsp ret="$?"
1070 66b11bf5 2019-03-27 stsp if [ "$ret" != "0" ]; then
1071 66b11bf5 2019-03-27 stsp diff -u $testroot/stderr.expected $testroot/stderr
1072 66b11bf5 2019-03-27 stsp test_done "$testroot" "$ret"
1073 66b11bf5 2019-03-27 stsp return 1
1074 66b11bf5 2019-03-27 stsp fi
1075 66b11bf5 2019-03-27 stsp
1076 66b11bf5 2019-03-27 stsp if [ -e $testroot/wt/beta ]; then
1077 66b11bf5 2019-03-27 stsp echo "removed file beta still exists on disk" >&2
1078 66b11bf5 2019-03-27 stsp test_done "$testroot" "1"
1079 66b11bf5 2019-03-27 stsp return 1
1080 66b11bf5 2019-03-27 stsp fi
1081 66b11bf5 2019-03-27 stsp
1082 66b11bf5 2019-03-27 stsp test_done "$testroot" "0"
1083 708d8e67 2019-03-27 stsp }
1084 c4cdcb68 2019-04-03 stsp
1085 c4cdcb68 2019-04-03 stsp function test_update_partial {
1086 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial`
1087 c4cdcb68 2019-04-03 stsp
1088 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1089 c4cdcb68 2019-04-03 stsp ret="$?"
1090 c4cdcb68 2019-04-03 stsp if [ "$ret" != "0" ]; then
1091 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1092 c4cdcb68 2019-04-03 stsp return 1
1093 c4cdcb68 2019-04-03 stsp fi
1094 708d8e67 2019-03-27 stsp
1095 c4cdcb68 2019-04-03 stsp echo "modified alpha" > $testroot/repo/alpha
1096 c4cdcb68 2019-04-03 stsp echo "modified beta" > $testroot/repo/beta
1097 c4cdcb68 2019-04-03 stsp echo "modified epsilon/zeta" > $testroot/repo/epsilon/zeta
1098 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "modified two files"
1099 c4cdcb68 2019-04-03 stsp
1100 f2ea84fa 2019-07-27 stsp echo "U alpha" > $testroot/stdout.expected
1101 f2ea84fa 2019-07-27 stsp echo "U beta" >> $testroot/stdout.expected
1102 f2ea84fa 2019-07-27 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1103 f2ea84fa 2019-07-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1104 f2ea84fa 2019-07-27 stsp echo >> $testroot/stdout.expected
1105 c4cdcb68 2019-04-03 stsp
1106 f2ea84fa 2019-07-27 stsp (cd $testroot/wt && got update alpha beta > $testroot/stdout)
1107 c4cdcb68 2019-04-03 stsp
1108 f2ea84fa 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1109 f2ea84fa 2019-07-27 stsp ret="$?"
1110 f2ea84fa 2019-07-27 stsp if [ "$ret" != "0" ]; then
1111 f2ea84fa 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1112 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1113 f2ea84fa 2019-07-27 stsp return 1
1114 f2ea84fa 2019-07-27 stsp fi
1115 c4cdcb68 2019-04-03 stsp
1116 f2ea84fa 2019-07-27 stsp echo "modified alpha" > $testroot/content.expected
1117 f2ea84fa 2019-07-27 stsp echo "modified beta" >> $testroot/content.expected
1118 f2ea84fa 2019-07-27 stsp
1119 f2ea84fa 2019-07-27 stsp cat $testroot/wt/alpha $testroot/wt/beta > $testroot/content
1120 f2ea84fa 2019-07-27 stsp cmp -s $testroot/content.expected $testroot/content
1121 f2ea84fa 2019-07-27 stsp ret="$?"
1122 f2ea84fa 2019-07-27 stsp if [ "$ret" != "0" ]; then
1123 f2ea84fa 2019-07-27 stsp diff -u $testroot/content.expected $testroot/content
1124 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1125 f2ea84fa 2019-07-27 stsp return 1
1126 f2ea84fa 2019-07-27 stsp fi
1127 e4d984c2 2019-05-22 stsp
1128 e4d984c2 2019-05-22 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
1129 e4d984c2 2019-05-22 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1130 e4d984c2 2019-05-22 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1131 e4d984c2 2019-05-22 stsp echo >> $testroot/stdout.expected
1132 e4d984c2 2019-05-22 stsp
1133 e4d984c2 2019-05-22 stsp (cd $testroot/wt && got update epsilon > $testroot/stdout)
1134 e4d984c2 2019-05-22 stsp
1135 e4d984c2 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1136 e4d984c2 2019-05-22 stsp ret="$?"
1137 e4d984c2 2019-05-22 stsp if [ "$ret" != "0" ]; then
1138 e4d984c2 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1139 e4d984c2 2019-05-22 stsp test_done "$testroot" "$ret"
1140 e4d984c2 2019-05-22 stsp return 1
1141 e4d984c2 2019-05-22 stsp fi
1142 e4d984c2 2019-05-22 stsp
1143 e4d984c2 2019-05-22 stsp echo "modified epsilon/zeta" > $testroot/content.expected
1144 e4d984c2 2019-05-22 stsp cat $testroot/wt/epsilon/zeta > $testroot/content
1145 e4d984c2 2019-05-22 stsp
1146 e4d984c2 2019-05-22 stsp cmp -s $testroot/content.expected $testroot/content
1147 e4d984c2 2019-05-22 stsp ret="$?"
1148 e4d984c2 2019-05-22 stsp if [ "$ret" != "0" ]; then
1149 e4d984c2 2019-05-22 stsp diff -u $testroot/content.expected $testroot/content
1150 e4d984c2 2019-05-22 stsp test_done "$testroot" "$ret"
1151 e4d984c2 2019-05-22 stsp return 1
1152 e4d984c2 2019-05-22 stsp fi
1153 e4d984c2 2019-05-22 stsp
1154 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1155 c4cdcb68 2019-04-03 stsp }
1156 c4cdcb68 2019-04-03 stsp
1157 c4cdcb68 2019-04-03 stsp function test_update_partial_add {
1158 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial_add`
1159 c4cdcb68 2019-04-03 stsp
1160 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1161 c4cdcb68 2019-04-03 stsp ret="$?"
1162 c4cdcb68 2019-04-03 stsp if [ "$ret" != "0" ]; then
1163 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1164 c4cdcb68 2019-04-03 stsp return 1
1165 c4cdcb68 2019-04-03 stsp fi
1166 c4cdcb68 2019-04-03 stsp
1167 c4cdcb68 2019-04-03 stsp echo "new" > $testroot/repo/new
1168 c4cdcb68 2019-04-03 stsp echo "epsilon/new2" > $testroot/repo/epsilon/new2
1169 c4cdcb68 2019-04-03 stsp (cd $testroot/repo && git add .)
1170 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "added two files"
1171 c4cdcb68 2019-04-03 stsp
1172 f2ea84fa 2019-07-27 stsp echo "A new" > $testroot/stdout.expected
1173 f2ea84fa 2019-07-27 stsp echo "A epsilon/new2" >> $testroot/stdout.expected
1174 f2ea84fa 2019-07-27 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1175 f2ea84fa 2019-07-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1176 f2ea84fa 2019-07-27 stsp echo >> $testroot/stdout.expected
1177 c4cdcb68 2019-04-03 stsp
1178 f2ea84fa 2019-07-27 stsp (cd $testroot/wt && got update new epsilon/new2 > $testroot/stdout)
1179 c4cdcb68 2019-04-03 stsp
1180 f2ea84fa 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1181 f2ea84fa 2019-07-27 stsp ret="$?"
1182 f2ea84fa 2019-07-27 stsp if [ "$ret" != "0" ]; then
1183 f2ea84fa 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1184 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1185 f2ea84fa 2019-07-27 stsp return 1
1186 f2ea84fa 2019-07-27 stsp fi
1187 c4cdcb68 2019-04-03 stsp
1188 f2ea84fa 2019-07-27 stsp echo "new" > $testroot/content.expected
1189 f2ea84fa 2019-07-27 stsp echo "epsilon/new2" >> $testroot/content.expected
1190 c4cdcb68 2019-04-03 stsp
1191 f2ea84fa 2019-07-27 stsp cat $testroot/wt/new $testroot/wt/epsilon/new2 > $testroot/content
1192 f2ea84fa 2019-07-27 stsp
1193 f2ea84fa 2019-07-27 stsp cmp -s $testroot/content.expected $testroot/content
1194 f2ea84fa 2019-07-27 stsp ret="$?"
1195 f2ea84fa 2019-07-27 stsp if [ "$ret" != "0" ]; then
1196 f2ea84fa 2019-07-27 stsp diff -u $testroot/content.expected $testroot/content
1197 f2ea84fa 2019-07-27 stsp fi
1198 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1199 c4cdcb68 2019-04-03 stsp }
1200 c4cdcb68 2019-04-03 stsp
1201 c4cdcb68 2019-04-03 stsp function test_update_partial_rm {
1202 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial_rm`
1203 c4cdcb68 2019-04-03 stsp
1204 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1205 c4cdcb68 2019-04-03 stsp ret="$?"
1206 c4cdcb68 2019-04-03 stsp if [ "$ret" != "0" ]; then
1207 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1208 c4cdcb68 2019-04-03 stsp return 1
1209 c4cdcb68 2019-04-03 stsp fi
1210 c4cdcb68 2019-04-03 stsp
1211 f2ea84fa 2019-07-27 stsp (cd $testroot/repo && git rm -q alpha epsilon/zeta)
1212 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "removed two files"
1213 c4cdcb68 2019-04-03 stsp
1214 f2ea84fa 2019-07-27 stsp echo "got: no such entry found in tree" \
1215 f2ea84fa 2019-07-27 stsp > $testroot/stderr.expected
1216 f2ea84fa 2019-07-27 stsp
1217 f2ea84fa 2019-07-27 stsp (cd $testroot/wt && got update alpha epsilon/zeta 2> $testroot/stderr)
1218 f2ea84fa 2019-07-27 stsp ret="$?"
1219 f2ea84fa 2019-07-27 stsp if [ "$ret" == "0" ]; then
1220 f2ea84fa 2019-07-27 stsp echo "update succeeded unexpectedly" >&2
1221 f2ea84fa 2019-07-27 stsp test_done "$testroot" "1"
1222 f2ea84fa 2019-07-27 stsp return 1
1223 f2ea84fa 2019-07-27 stsp fi
1224 c4cdcb68 2019-04-03 stsp
1225 f2ea84fa 2019-07-27 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1226 f2ea84fa 2019-07-27 stsp ret="$?"
1227 f2ea84fa 2019-07-27 stsp if [ "$ret" != "0" ]; then
1228 f2ea84fa 2019-07-27 stsp diff -u $testroot/stderr.expected $testroot/stderr
1229 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1230 f2ea84fa 2019-07-27 stsp return 1
1231 f2ea84fa 2019-07-27 stsp fi
1232 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1233 c4cdcb68 2019-04-03 stsp }
1234 c4cdcb68 2019-04-03 stsp
1235 c4cdcb68 2019-04-03 stsp function test_update_partial_dir {
1236 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial_dir`
1237 c4cdcb68 2019-04-03 stsp
1238 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1239 c4cdcb68 2019-04-03 stsp ret="$?"
1240 c4cdcb68 2019-04-03 stsp if [ "$ret" != "0" ]; then
1241 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1242 c4cdcb68 2019-04-03 stsp return 1
1243 c4cdcb68 2019-04-03 stsp fi
1244 c4cdcb68 2019-04-03 stsp
1245 c4cdcb68 2019-04-03 stsp echo "modified alpha" > $testroot/repo/alpha
1246 c4cdcb68 2019-04-03 stsp echo "modified beta" > $testroot/repo/beta
1247 c4cdcb68 2019-04-03 stsp echo "modified epsilon/zeta" > $testroot/repo/epsilon/zeta
1248 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "modified two files"
1249 c4cdcb68 2019-04-03 stsp
1250 c4cdcb68 2019-04-03 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
1251 c4cdcb68 2019-04-03 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1252 c4cdcb68 2019-04-03 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1253 c4cdcb68 2019-04-03 stsp echo >> $testroot/stdout.expected
1254 c4cdcb68 2019-04-03 stsp
1255 c4cdcb68 2019-04-03 stsp (cd $testroot/wt && got update epsilon > $testroot/stdout)
1256 c4cdcb68 2019-04-03 stsp
1257 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1258 c4cdcb68 2019-04-03 stsp ret="$?"
1259 c4cdcb68 2019-04-03 stsp if [ "$ret" != "0" ]; then
1260 c4cdcb68 2019-04-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1261 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1262 c4cdcb68 2019-04-03 stsp return 1
1263 c4cdcb68 2019-04-03 stsp fi
1264 c4cdcb68 2019-04-03 stsp
1265 c4cdcb68 2019-04-03 stsp echo "modified epsilon/zeta" > $testroot/content.expected
1266 c4cdcb68 2019-04-03 stsp cat $testroot/wt/epsilon/zeta > $testroot/content
1267 c4cdcb68 2019-04-03 stsp
1268 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
1269 c4cdcb68 2019-04-03 stsp ret="$?"
1270 c4cdcb68 2019-04-03 stsp if [ "$ret" != "0" ]; then
1271 c4cdcb68 2019-04-03 stsp diff -u $testroot/content.expected $testroot/content
1272 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1273 c4cdcb68 2019-04-03 stsp return 1
1274 c4cdcb68 2019-04-03 stsp fi
1275 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1276 d5bea539 2019-05-13 stsp
1277 d5bea539 2019-05-13 stsp }
1278 d5bea539 2019-05-13 stsp
1279 d5bea539 2019-05-13 stsp function test_update_moved_branch_ref {
1280 d5bea539 2019-05-13 stsp local testroot=`test_init update_moved_branch_ref`
1281 d5bea539 2019-05-13 stsp
1282 d5bea539 2019-05-13 stsp git clone -q --mirror $testroot/repo $testroot/repo2
1283 d5bea539 2019-05-13 stsp
1284 d5bea539 2019-05-13 stsp echo "modified alpha with git" > $testroot/repo/alpha
1285 d5bea539 2019-05-13 stsp git_commit $testroot/repo -m "modified alpha with git"
1286 d5bea539 2019-05-13 stsp
1287 d5bea539 2019-05-13 stsp got checkout $testroot/repo2 $testroot/wt > /dev/null
1288 d5bea539 2019-05-13 stsp ret="$?"
1289 d5bea539 2019-05-13 stsp if [ "$ret" != "0" ]; then
1290 d5bea539 2019-05-13 stsp test_done "$testroot" "$ret"
1291 d5bea539 2019-05-13 stsp return 1
1292 d5bea539 2019-05-13 stsp fi
1293 d5bea539 2019-05-13 stsp
1294 d5bea539 2019-05-13 stsp echo "modified alpha with got" > $testroot/wt/alpha
1295 d5bea539 2019-05-13 stsp (cd $testroot/wt && got commit -m "modified alpha with got" > /dev/null)
1296 d5bea539 2019-05-13 stsp
1297 d5bea539 2019-05-13 stsp # + xxxxxxx...yyyyyyy master -> master (forced update)
1298 d5bea539 2019-05-13 stsp (cd $testroot/repo2 && git fetch -q --all)
1299 c4cdcb68 2019-04-03 stsp
1300 d5bea539 2019-05-13 stsp echo -n > $testroot/stdout.expected
1301 a1fb16d8 2019-05-24 stsp echo -n "got: work tree's head reference now points to a different " \
1302 a367ff0f 2019-05-14 stsp > $testroot/stderr.expected
1303 a1fb16d8 2019-05-24 stsp echo "branch; new head reference and/or update -b required" \
1304 a1fb16d8 2019-05-24 stsp >> $testroot/stderr.expected
1305 d5bea539 2019-05-13 stsp
1306 d5bea539 2019-05-13 stsp (cd $testroot/wt && got update > $testroot/stdout 2> $testroot/stderr)
1307 d5bea539 2019-05-13 stsp
1308 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1309 d5bea539 2019-05-13 stsp ret="$?"
1310 d5bea539 2019-05-13 stsp if [ "$ret" != "0" ]; then
1311 d5bea539 2019-05-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
1312 d5bea539 2019-05-13 stsp test_done "$testroot" "$ret"
1313 d5bea539 2019-05-13 stsp return 1
1314 d5bea539 2019-05-13 stsp fi
1315 d5bea539 2019-05-13 stsp
1316 8d301dd9 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1317 d5bea539 2019-05-13 stsp ret="$?"
1318 d5bea539 2019-05-13 stsp if [ "$ret" != "0" ]; then
1319 d5bea539 2019-05-13 stsp diff -u $testroot/stderr.expected $testroot/stderr
1320 d5bea539 2019-05-13 stsp fi
1321 d5bea539 2019-05-13 stsp test_done "$testroot" "$ret"
1322 c4cdcb68 2019-04-03 stsp }
1323 024e9686 2019-05-14 stsp
1324 024e9686 2019-05-14 stsp function test_update_to_another_branch {
1325 024e9686 2019-05-14 stsp local testroot=`test_init update_to_another_branch`
1326 024e9686 2019-05-14 stsp
1327 024e9686 2019-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1328 024e9686 2019-05-14 stsp ret="$?"
1329 024e9686 2019-05-14 stsp if [ "$ret" != "0" ]; then
1330 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1331 024e9686 2019-05-14 stsp return 1
1332 024e9686 2019-05-14 stsp fi
1333 024e9686 2019-05-14 stsp
1334 024e9686 2019-05-14 stsp echo 'refs/heads/master'> $testroot/head-ref.expected
1335 024e9686 2019-05-14 stsp cmp -s $testroot/head-ref.expected $testroot/wt/.got/head-ref
1336 024e9686 2019-05-14 stsp ret="$?"
1337 024e9686 2019-05-14 stsp if [ "$ret" != "0" ]; then
1338 024e9686 2019-05-14 stsp diff -u $testroot/head-ref.expected $testroot/wt/.got/head-ref
1339 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1340 024e9686 2019-05-14 stsp return 1
1341 024e9686 2019-05-14 stsp fi
1342 024e9686 2019-05-14 stsp
1343 024e9686 2019-05-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1344 024e9686 2019-05-14 stsp echo "modified alpha on new branch" > $testroot/repo/alpha
1345 024e9686 2019-05-14 stsp git_commit $testroot/repo -m "modified alpha on new branch"
1346 024e9686 2019-05-14 stsp
1347 024e9686 2019-05-14 stsp echo "modified alpha in work tree" > $testroot/wt/alpha
1348 024e9686 2019-05-14 stsp
1349 d969fa15 2019-05-22 stsp echo "Switching work tree from refs/heads/master to refs/heads/newbranch" > $testroot/stdout.expected
1350 d969fa15 2019-05-22 stsp echo "C alpha" >> $testroot/stdout.expected
1351 024e9686 2019-05-14 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1352 024e9686 2019-05-14 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1353 024e9686 2019-05-14 stsp echo >> $testroot/stdout.expected
1354 024e9686 2019-05-14 stsp
1355 024e9686 2019-05-14 stsp (cd $testroot/wt && got update -b newbranch > $testroot/stdout)
1356 024e9686 2019-05-14 stsp
1357 024e9686 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1358 024e9686 2019-05-14 stsp ret="$?"
1359 024e9686 2019-05-14 stsp if [ "$ret" != "0" ]; then
1360 024e9686 2019-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1361 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1362 024e9686 2019-05-14 stsp return 1
1363 024e9686 2019-05-14 stsp fi
1364 c4cdcb68 2019-04-03 stsp
1365 024e9686 2019-05-14 stsp echo -n "<<<<<<< commit " > $testroot/content.expected
1366 024e9686 2019-05-14 stsp git_show_head $testroot/repo >> $testroot/content.expected
1367 024e9686 2019-05-14 stsp echo >> $testroot/content.expected
1368 024e9686 2019-05-14 stsp echo "modified alpha on new branch" >> $testroot/content.expected
1369 d136cfcb 2019-10-12 stsp echo "|||||||" >> $testroot/content.expected
1370 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
1371 024e9686 2019-05-14 stsp echo "=======" >> $testroot/content.expected
1372 024e9686 2019-05-14 stsp echo "modified alpha in work tree" >> $testroot/content.expected
1373 024e9686 2019-05-14 stsp echo '>>>>>>> alpha' >> $testroot/content.expected
1374 d5bea539 2019-05-13 stsp
1375 024e9686 2019-05-14 stsp cat $testroot/wt/alpha > $testroot/content
1376 024e9686 2019-05-14 stsp
1377 024e9686 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
1378 024e9686 2019-05-14 stsp ret="$?"
1379 024e9686 2019-05-14 stsp if [ "$ret" != "0" ]; then
1380 024e9686 2019-05-14 stsp diff -u $testroot/content.expected $testroot/content
1381 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1382 024e9686 2019-05-14 stsp return 1
1383 024e9686 2019-05-14 stsp fi
1384 024e9686 2019-05-14 stsp
1385 024e9686 2019-05-14 stsp echo 'refs/heads/newbranch'> $testroot/head-ref.expected
1386 024e9686 2019-05-14 stsp cmp -s $testroot/head-ref.expected $testroot/wt/.got/head-ref
1387 024e9686 2019-05-14 stsp ret="$?"
1388 024e9686 2019-05-14 stsp if [ "$ret" != "0" ]; then
1389 024e9686 2019-05-14 stsp diff -u $testroot/head-ref.expected $testroot/wt/.got/head-ref
1390 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1391 a367ff0f 2019-05-14 stsp return 1
1392 a367ff0f 2019-05-14 stsp fi
1393 a367ff0f 2019-05-14 stsp
1394 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1395 a367ff0f 2019-05-14 stsp }
1396 a367ff0f 2019-05-14 stsp
1397 a367ff0f 2019-05-14 stsp function test_update_to_commit_on_wrong_branch {
1398 a367ff0f 2019-05-14 stsp local testroot=`test_init update_to_commit_on_wrong_branch`
1399 a367ff0f 2019-05-14 stsp
1400 a367ff0f 2019-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1401 a367ff0f 2019-05-14 stsp ret="$?"
1402 a367ff0f 2019-05-14 stsp if [ "$ret" != "0" ]; then
1403 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1404 a367ff0f 2019-05-14 stsp return 1
1405 a367ff0f 2019-05-14 stsp fi
1406 a367ff0f 2019-05-14 stsp
1407 a367ff0f 2019-05-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1408 a367ff0f 2019-05-14 stsp echo "modified alpha on new branch" > $testroot/repo/alpha
1409 a367ff0f 2019-05-14 stsp git_commit $testroot/repo -m "modified alpha on new branch"
1410 a367ff0f 2019-05-14 stsp
1411 a367ff0f 2019-05-14 stsp echo -n "" > $testroot/stdout.expected
1412 a367ff0f 2019-05-14 stsp echo "got: target commit is on a different branch" \
1413 a367ff0f 2019-05-14 stsp > $testroot/stderr.expected
1414 a367ff0f 2019-05-14 stsp
1415 a367ff0f 2019-05-14 stsp local head_rev=`git_show_head $testroot/repo`
1416 a367ff0f 2019-05-14 stsp (cd $testroot/wt && got update -c $head_rev > $testroot/stdout \
1417 a367ff0f 2019-05-14 stsp 2> $testroot/stderr)
1418 a367ff0f 2019-05-14 stsp
1419 a367ff0f 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1420 a367ff0f 2019-05-14 stsp ret="$?"
1421 a367ff0f 2019-05-14 stsp if [ "$ret" != "0" ]; then
1422 a367ff0f 2019-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1423 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1424 024e9686 2019-05-14 stsp return 1
1425 024e9686 2019-05-14 stsp fi
1426 024e9686 2019-05-14 stsp
1427 a367ff0f 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1428 a367ff0f 2019-05-14 stsp ret="$?"
1429 a367ff0f 2019-05-14 stsp if [ "$ret" != "0" ]; then
1430 a367ff0f 2019-05-14 stsp diff -u $testroot/stderr.expected $testroot/stderr
1431 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1432 a367ff0f 2019-05-14 stsp return 1
1433 a367ff0f 2019-05-14 stsp fi
1434 a367ff0f 2019-05-14 stsp
1435 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1436 024e9686 2019-05-14 stsp }
1437 c932eeeb 2019-05-22 stsp
1438 c932eeeb 2019-05-22 stsp function test_update_bumps_base_commit_id {
1439 a5e55564 2019-06-10 stsp local testroot=`test_init update_bumps_base_commit_id`
1440 c932eeeb 2019-05-22 stsp
1441 1a36436d 2019-06-10 stsp echo "psi" > $testroot/repo/epsilon/psi
1442 1a36436d 2019-06-10 stsp (cd $testroot/repo && git add .)
1443 1a36436d 2019-06-10 stsp git_commit $testroot/repo -m "adding another file"
1444 1a36436d 2019-06-10 stsp
1445 c932eeeb 2019-05-22 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1446 c932eeeb 2019-05-22 stsp ret="$?"
1447 c932eeeb 2019-05-22 stsp if [ "$ret" != "0" ]; then
1448 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1449 c932eeeb 2019-05-22 stsp return 1
1450 c932eeeb 2019-05-22 stsp fi
1451 024e9686 2019-05-14 stsp
1452 1a36436d 2019-06-10 stsp echo "modified psi" > $testroot/wt/epsilon/psi
1453 1a36436d 2019-06-10 stsp (cd $testroot/wt && got commit -m "changed psi" > $testroot/stdout)
1454 c932eeeb 2019-05-22 stsp
1455 c932eeeb 2019-05-22 stsp local head_rev=`git_show_head $testroot/repo`
1456 1a36436d 2019-06-10 stsp echo "M epsilon/psi" > $testroot/stdout.expected
1457 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
1458 c932eeeb 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1459 c932eeeb 2019-05-22 stsp ret="$?"
1460 c932eeeb 2019-05-22 stsp if [ "$ret" != "0" ]; then
1461 c932eeeb 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1462 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1463 c932eeeb 2019-05-22 stsp return 1
1464 c932eeeb 2019-05-22 stsp fi
1465 9bead371 2019-07-28 stsp
1466 305993b9 2019-07-28 stsp echo "changed zeta with git" > $testroot/repo/epsilon/zeta
1467 9bead371 2019-07-28 stsp (cd $testroot/repo && git add .)
1468 9bead371 2019-07-28 stsp git_commit $testroot/repo -m "changing zeta with git"
1469 c932eeeb 2019-05-22 stsp
1470 1a36436d 2019-06-10 stsp echo "modified zeta" > $testroot/wt/epsilon/zeta
1471 1a36436d 2019-06-10 stsp (cd $testroot/wt && got commit -m "changed zeta" > $testroot/stdout \
1472 c932eeeb 2019-05-22 stsp 2> $testroot/stderr)
1473 c932eeeb 2019-05-22 stsp
1474 c932eeeb 2019-05-22 stsp echo -n "" > $testroot/stdout.expected
1475 c932eeeb 2019-05-22 stsp echo "got: work tree must be updated before these changes can be committed" > $testroot/stderr.expected
1476 c932eeeb 2019-05-22 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1477 c932eeeb 2019-05-22 stsp ret="$?"
1478 c932eeeb 2019-05-22 stsp if [ "$ret" != "0" ]; then
1479 c932eeeb 2019-05-22 stsp diff -u $testroot/stderr.expected $testroot/stderr
1480 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1481 c932eeeb 2019-05-22 stsp return 1
1482 c932eeeb 2019-05-22 stsp fi
1483 c932eeeb 2019-05-22 stsp
1484 c932eeeb 2019-05-22 stsp (cd $testroot/wt && got update > $testroot/stdout)
1485 c932eeeb 2019-05-22 stsp
1486 9bead371 2019-07-28 stsp echo "U epsilon/psi" > $testroot/stdout.expected
1487 9bead371 2019-07-28 stsp echo "C epsilon/zeta" >> $testroot/stdout.expected
1488 a484d721 2019-06-10 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1489 a484d721 2019-06-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1490 a484d721 2019-06-10 stsp echo >> $testroot/stdout.expected
1491 c932eeeb 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1492 c932eeeb 2019-05-22 stsp ret="$?"
1493 c932eeeb 2019-05-22 stsp if [ "$ret" != "0" ]; then
1494 c932eeeb 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1495 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1496 c932eeeb 2019-05-22 stsp return 1
1497 c932eeeb 2019-05-22 stsp fi
1498 c932eeeb 2019-05-22 stsp
1499 9bead371 2019-07-28 stsp # resolve conflict
1500 9bead371 2019-07-28 stsp echo "modified zeta with got and git" > $testroot/wt/epsilon/zeta
1501 9bead371 2019-07-28 stsp
1502 1a36436d 2019-06-10 stsp (cd $testroot/wt && got commit -m "changed zeta" > $testroot/stdout)
1503 c932eeeb 2019-05-22 stsp
1504 c932eeeb 2019-05-22 stsp local head_rev=`git_show_head $testroot/repo`
1505 1a36436d 2019-06-10 stsp echo "M epsilon/zeta" > $testroot/stdout.expected
1506 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
1507 303e2782 2019-08-09 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1508 303e2782 2019-08-09 stsp ret="$?"
1509 303e2782 2019-08-09 stsp if [ "$ret" != "0" ]; then
1510 303e2782 2019-08-09 stsp diff -u $testroot/stdout.expected $testroot/stdout
1511 303e2782 2019-08-09 stsp test_done "$testroot" "$ret"
1512 303e2782 2019-08-09 stsp return 1
1513 303e2782 2019-08-09 stsp fi
1514 303e2782 2019-08-09 stsp
1515 303e2782 2019-08-09 stsp test_done "$testroot" "$ret"
1516 303e2782 2019-08-09 stsp }
1517 303e2782 2019-08-09 stsp
1518 303e2782 2019-08-09 stsp function test_update_tag {
1519 303e2782 2019-08-09 stsp local testroot=`test_init update_tag`
1520 303e2782 2019-08-09 stsp local tag="1.0.0"
1521 303e2782 2019-08-09 stsp
1522 303e2782 2019-08-09 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1523 303e2782 2019-08-09 stsp ret="$?"
1524 303e2782 2019-08-09 stsp if [ "$ret" != "0" ]; then
1525 303e2782 2019-08-09 stsp test_done "$testroot" "$ret"
1526 303e2782 2019-08-09 stsp return 1
1527 303e2782 2019-08-09 stsp fi
1528 303e2782 2019-08-09 stsp
1529 303e2782 2019-08-09 stsp echo "modified alpha" > $testroot/repo/alpha
1530 303e2782 2019-08-09 stsp git_commit $testroot/repo -m "modified alpha"
1531 303e2782 2019-08-09 stsp (cd $testroot/repo && git tag -m "test" -a $tag)
1532 303e2782 2019-08-09 stsp
1533 303e2782 2019-08-09 stsp echo "U alpha" > $testroot/stdout.expected
1534 303e2782 2019-08-09 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
1535 303e2782 2019-08-09 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1536 303e2782 2019-08-09 stsp echo >> $testroot/stdout.expected
1537 303e2782 2019-08-09 stsp
1538 303e2782 2019-08-09 stsp (cd $testroot/wt && got update -c $tag > $testroot/stdout)
1539 303e2782 2019-08-09 stsp
1540 c932eeeb 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1541 c932eeeb 2019-05-22 stsp ret="$?"
1542 c932eeeb 2019-05-22 stsp if [ "$ret" != "0" ]; then
1543 c932eeeb 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1544 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1545 c932eeeb 2019-05-22 stsp return 1
1546 c932eeeb 2019-05-22 stsp fi
1547 c932eeeb 2019-05-22 stsp
1548 303e2782 2019-08-09 stsp echo "modified alpha" > $testroot/content.expected
1549 303e2782 2019-08-09 stsp cat $testroot/wt/alpha > $testroot/content
1550 303e2782 2019-08-09 stsp
1551 303e2782 2019-08-09 stsp cmp -s $testroot/content.expected $testroot/content
1552 303e2782 2019-08-09 stsp ret="$?"
1553 303e2782 2019-08-09 stsp if [ "$ret" != "0" ]; then
1554 303e2782 2019-08-09 stsp diff -u $testroot/content.expected $testroot/content
1555 303e2782 2019-08-09 stsp fi
1556 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1557 c932eeeb 2019-05-22 stsp }
1558 c932eeeb 2019-05-22 stsp
1559 c84d8c75 2019-01-02 stsp run_test test_update_basic
1560 3b4d3732 2019-01-02 stsp run_test test_update_adds_file
1561 512f0d0e 2019-01-02 stsp run_test test_update_deletes_file
1562 f5c49f82 2019-01-06 stsp run_test test_update_deletes_dir
1563 5cc266ba 2019-01-06 stsp run_test test_update_deletes_dir_with_path_prefix
1564 90285c3b 2019-01-08 stsp run_test test_update_deletes_dir_recursively
1565 4482e97b 2019-01-08 stsp run_test test_update_sibling_dirs_with_common_prefix
1566 50952927 2019-01-12 stsp run_test test_update_dir_with_dot_sibling
1567 46cee7a3 2019-01-12 stsp run_test test_update_moves_files_upwards
1568 bd4792ec 2019-01-13 stsp run_test test_update_moves_files_to_new_dir
1569 4a1ddfc2 2019-01-12 stsp run_test test_update_creates_missing_parent
1570 bd4792ec 2019-01-13 stsp run_test test_update_creates_missing_parent_with_subdir
1571 21908da4 2019-01-13 stsp run_test test_update_file_in_subsubdir
1572 6353ad76 2019-02-08 stsp run_test test_update_merges_file_edits
1573 68ed9ba5 2019-02-10 stsp run_test test_update_keeps_xbit
1574 ba8a0d4d 2019-02-10 stsp run_test test_update_clears_xbit
1575 a378724f 2019-02-10 stsp run_test test_update_restores_missing_file
1576 085d5bcf 2019-03-27 stsp run_test test_update_conflict_wt_add_vs_repo_add
1577 085d5bcf 2019-03-27 stsp run_test test_update_conflict_wt_edit_vs_repo_rm
1578 13d9040b 2019-03-27 stsp run_test test_update_conflict_wt_rm_vs_repo_edit
1579 66b11bf5 2019-03-27 stsp run_test test_update_conflict_wt_rm_vs_repo_rm
1580 c4cdcb68 2019-04-03 stsp run_test test_update_partial
1581 c4cdcb68 2019-04-03 stsp run_test test_update_partial_add
1582 c4cdcb68 2019-04-03 stsp run_test test_update_partial_rm
1583 c4cdcb68 2019-04-03 stsp run_test test_update_partial_dir
1584 d5bea539 2019-05-13 stsp run_test test_update_moved_branch_ref
1585 024e9686 2019-05-14 stsp run_test test_update_to_another_branch
1586 a367ff0f 2019-05-14 stsp run_test test_update_to_commit_on_wrong_branch
1587 c932eeeb 2019-05-22 stsp run_test test_update_bumps_base_commit_id
1588 303e2782 2019-08-09 stsp run_test test_update_tag