Blame


1 069bbb86 2022-03-07 thomas #!/bin/sh
2 069bbb86 2022-03-07 thomas #
3 069bbb86 2022-03-07 thomas # Copyright (c) 2022 Omar Polo <op@openbsd.org>
4 069bbb86 2022-03-07 thomas #
5 069bbb86 2022-03-07 thomas # Permission to use, copy, modify, and distribute this software for any
6 069bbb86 2022-03-07 thomas # purpose with or without fee is hereby granted, provided that the above
7 069bbb86 2022-03-07 thomas # copyright notice and this permission notice appear in all copies.
8 069bbb86 2022-03-07 thomas #
9 069bbb86 2022-03-07 thomas # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 069bbb86 2022-03-07 thomas # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 069bbb86 2022-03-07 thomas # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 069bbb86 2022-03-07 thomas # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 069bbb86 2022-03-07 thomas # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 069bbb86 2022-03-07 thomas # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 069bbb86 2022-03-07 thomas # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 069bbb86 2022-03-07 thomas
17 069bbb86 2022-03-07 thomas . ./common.sh
18 069bbb86 2022-03-07 thomas
19 069bbb86 2022-03-07 thomas test_patch_simple_add_file() {
20 069bbb86 2022-03-07 thomas local testroot=`test_init patch_simple_add_file`
21 069bbb86 2022-03-07 thomas
22 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
23 069bbb86 2022-03-07 thomas ret=$?
24 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
25 069bbb86 2022-03-07 thomas test_done $testroot $ret
26 069bbb86 2022-03-07 thomas return 1
27 069bbb86 2022-03-07 thomas fi
28 069bbb86 2022-03-07 thomas
29 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
30 069bbb86 2022-03-07 thomas --- /dev/null
31 069bbb86 2022-03-07 thomas +++ eta
32 069bbb86 2022-03-07 thomas @@ -0,0 +1 @@
33 069bbb86 2022-03-07 thomas +eta
34 069bbb86 2022-03-07 thomas EOF
35 069bbb86 2022-03-07 thomas
36 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
37 069bbb86 2022-03-07 thomas ret=$?
38 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
39 069bbb86 2022-03-07 thomas test_done $testroot $ret
40 069bbb86 2022-03-07 thomas return 1
41 069bbb86 2022-03-07 thomas fi
42 069bbb86 2022-03-07 thomas
43 069bbb86 2022-03-07 thomas echo "A eta" > $testroot/stdout.expected
44 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
45 069bbb86 2022-03-07 thomas ret=$?
46 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
47 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
48 069bbb86 2022-03-07 thomas test_done $testroot $ret
49 069bbb86 2022-03-07 thomas return 1
50 069bbb86 2022-03-07 thomas fi
51 069bbb86 2022-03-07 thomas
52 069bbb86 2022-03-07 thomas echo eta > $testroot/wt/eta.expected
53 069bbb86 2022-03-07 thomas cmp -s $testroot/wt/eta.expected $testroot/wt/eta
54 069bbb86 2022-03-07 thomas ret=$?
55 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
56 069bbb86 2022-03-07 thomas diff -u $testroot/wt/eta.expected $testroot/wt/eta
57 069bbb86 2022-03-07 thomas fi
58 069bbb86 2022-03-07 thomas test_done $testroot $ret
59 069bbb86 2022-03-07 thomas }
60 069bbb86 2022-03-07 thomas
61 069bbb86 2022-03-07 thomas test_patch_simple_rm_file() {
62 069bbb86 2022-03-07 thomas local testroot=`test_init patch_simple_rm_file`
63 069bbb86 2022-03-07 thomas
64 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
65 069bbb86 2022-03-07 thomas ret=$?
66 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
67 069bbb86 2022-03-07 thomas test_done $testroot $ret
68 069bbb86 2022-03-07 thomas return 1
69 069bbb86 2022-03-07 thomas fi
70 069bbb86 2022-03-07 thomas
71 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
72 069bbb86 2022-03-07 thomas --- alpha
73 069bbb86 2022-03-07 thomas +++ /dev/null
74 069bbb86 2022-03-07 thomas @@ -1 +0,0 @@
75 069bbb86 2022-03-07 thomas -alpha
76 069bbb86 2022-03-07 thomas EOF
77 069bbb86 2022-03-07 thomas
78 069bbb86 2022-03-07 thomas echo "D alpha" > $testroot/stdout.expected
79 069bbb86 2022-03-07 thomas
80 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
81 069bbb86 2022-03-07 thomas ret=$?
82 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
83 069bbb86 2022-03-07 thomas test_done $testroot $ret
84 069bbb86 2022-03-07 thomas return 1
85 069bbb86 2022-03-07 thomas fi
86 069bbb86 2022-03-07 thomas
87 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
88 069bbb86 2022-03-07 thomas ret=$?
89 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
90 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
91 069bbb86 2022-03-07 thomas test_done $testroot $ret
92 069bbb86 2022-03-07 thomas return 1
93 069bbb86 2022-03-07 thomas fi
94 069bbb86 2022-03-07 thomas
95 069bbb86 2022-03-07 thomas if [ -f $testroot/wt/alpha ]; then
96 069bbb86 2022-03-07 thomas ret=1
97 069bbb86 2022-03-07 thomas echo "alpha still exists!"
98 069bbb86 2022-03-07 thomas fi
99 069bbb86 2022-03-07 thomas test_done $testroot $ret
100 069bbb86 2022-03-07 thomas }
101 069bbb86 2022-03-07 thomas
102 069bbb86 2022-03-07 thomas test_patch_simple_edit_file() {
103 069bbb86 2022-03-07 thomas local testroot=`test_init patch_simple_edit_file`
104 069bbb86 2022-03-07 thomas
105 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
106 069bbb86 2022-03-07 thomas ret=$?
107 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
108 069bbb86 2022-03-07 thomas test_done $testroot $ret
109 069bbb86 2022-03-07 thomas return 1
110 069bbb86 2022-03-07 thomas fi
111 069bbb86 2022-03-07 thomas
112 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
113 069bbb86 2022-03-07 thomas --- alpha
114 069bbb86 2022-03-07 thomas +++ alpha
115 069bbb86 2022-03-07 thomas @@ -1 +1 @@
116 069bbb86 2022-03-07 thomas -alpha
117 069bbb86 2022-03-07 thomas +alpha is my favourite character
118 069bbb86 2022-03-07 thomas EOF
119 069bbb86 2022-03-07 thomas
120 069bbb86 2022-03-07 thomas echo "M alpha" > $testroot/stdout.expected
121 069bbb86 2022-03-07 thomas
122 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
123 069bbb86 2022-03-07 thomas ret=$?
124 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
125 069bbb86 2022-03-07 thomas test_done $testroot $ret
126 069bbb86 2022-03-07 thomas return 1
127 069bbb86 2022-03-07 thomas fi
128 069bbb86 2022-03-07 thomas
129 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
130 069bbb86 2022-03-07 thomas ret=$?
131 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
132 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
133 069bbb86 2022-03-07 thomas test_done $testroot $ret
134 069bbb86 2022-03-07 thomas return 1
135 069bbb86 2022-03-07 thomas fi
136 069bbb86 2022-03-07 thomas
137 069bbb86 2022-03-07 thomas echo 'alpha is my favourite character' > $testroot/wt/alpha.expected
138 069bbb86 2022-03-07 thomas cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
139 069bbb86 2022-03-07 thomas ret=$?
140 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
141 069bbb86 2022-03-07 thomas diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
142 069bbb86 2022-03-07 thomas fi
143 069bbb86 2022-03-07 thomas test_done $testroot $ret
144 069bbb86 2022-03-07 thomas }
145 069bbb86 2022-03-07 thomas
146 069bbb86 2022-03-07 thomas test_patch_prepend_line() {
147 069bbb86 2022-03-07 thomas local testroot=`test_init patch_prepend_line`
148 069bbb86 2022-03-07 thomas
149 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
150 069bbb86 2022-03-07 thomas ret=$?
151 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
152 069bbb86 2022-03-07 thomas test_done $testroot $ret
153 069bbb86 2022-03-07 thomas return 1
154 069bbb86 2022-03-07 thomas fi
155 069bbb86 2022-03-07 thomas
156 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
157 069bbb86 2022-03-07 thomas --- alpha
158 069bbb86 2022-03-07 thomas +++ alpha
159 069bbb86 2022-03-07 thomas @@ -1 +1,2 @@
160 069bbb86 2022-03-07 thomas +hatsuseno
161 069bbb86 2022-03-07 thomas alpha
162 069bbb86 2022-03-07 thomas EOF
163 069bbb86 2022-03-07 thomas
164 069bbb86 2022-03-07 thomas echo "M alpha" > $testroot/stdout.expected
165 069bbb86 2022-03-07 thomas
166 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
167 069bbb86 2022-03-07 thomas ret=$?
168 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
169 069bbb86 2022-03-07 thomas test_done $testroot $ret
170 069bbb86 2022-03-07 thomas return 1
171 069bbb86 2022-03-07 thomas fi
172 069bbb86 2022-03-07 thomas
173 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
174 069bbb86 2022-03-07 thomas ret=$?
175 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
176 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
177 069bbb86 2022-03-07 thomas test_done $testroot $ret
178 069bbb86 2022-03-07 thomas return 1
179 069bbb86 2022-03-07 thomas fi
180 069bbb86 2022-03-07 thomas
181 069bbb86 2022-03-07 thomas echo hatsuseno > $testroot/wt/alpha.expected
182 069bbb86 2022-03-07 thomas echo alpha >> $testroot/wt/alpha.expected
183 069bbb86 2022-03-07 thomas cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
184 069bbb86 2022-03-07 thomas ret=$?
185 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
186 069bbb86 2022-03-07 thomas diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
187 069bbb86 2022-03-07 thomas fi
188 069bbb86 2022-03-07 thomas test_done $testroot $ret
189 069bbb86 2022-03-07 thomas }
190 069bbb86 2022-03-07 thomas
191 069bbb86 2022-03-07 thomas test_patch_replace_line() {
192 069bbb86 2022-03-07 thomas local testroot=`test_init patch_replace_line`
193 069bbb86 2022-03-07 thomas
194 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
195 069bbb86 2022-03-07 thomas ret=$?
196 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
197 069bbb86 2022-03-07 thomas test_done $testroot $ret
198 069bbb86 2022-03-07 thomas return 1
199 069bbb86 2022-03-07 thomas fi
200 069bbb86 2022-03-07 thomas
201 069bbb86 2022-03-07 thomas jot 10 > $testroot/wt/numbers
202 069bbb86 2022-03-07 thomas (cd $testroot/wt/ && got add numbers && got ci -m 'add numbers') \
203 069bbb86 2022-03-07 thomas >/dev/null
204 069bbb86 2022-03-07 thomas ret=$?
205 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
206 069bbb86 2022-03-07 thomas test_done $testroot $ret
207 069bbb86 2022-03-07 thomas return 1
208 069bbb86 2022-03-07 thomas fi
209 069bbb86 2022-03-07 thomas
210 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
211 069bbb86 2022-03-07 thomas --- numbers
212 069bbb86 2022-03-07 thomas +++ numbers
213 069bbb86 2022-03-07 thomas @@ -3,7 +3,7 @@
214 069bbb86 2022-03-07 thomas 3
215 069bbb86 2022-03-07 thomas 4
216 069bbb86 2022-03-07 thomas 5
217 069bbb86 2022-03-07 thomas -6
218 069bbb86 2022-03-07 thomas +foo
219 069bbb86 2022-03-07 thomas 7
220 069bbb86 2022-03-07 thomas 8
221 069bbb86 2022-03-07 thomas 9
222 069bbb86 2022-03-07 thomas EOF
223 069bbb86 2022-03-07 thomas
224 069bbb86 2022-03-07 thomas echo "M numbers" > $testroot/stdout.expected
225 069bbb86 2022-03-07 thomas
226 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
227 069bbb86 2022-03-07 thomas ret=$?
228 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
229 069bbb86 2022-03-07 thomas test_done $testroot $ret
230 069bbb86 2022-03-07 thomas return 1
231 069bbb86 2022-03-07 thomas fi
232 069bbb86 2022-03-07 thomas
233 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
234 069bbb86 2022-03-07 thomas ret=$?
235 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
236 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
237 069bbb86 2022-03-07 thomas test_done $testroot $ret
238 069bbb86 2022-03-07 thomas return 1
239 069bbb86 2022-03-07 thomas fi
240 069bbb86 2022-03-07 thomas
241 069bbb86 2022-03-07 thomas jot 10 | sed 's/6/foo/' > $testroot/wt/numbers.expected
242 069bbb86 2022-03-07 thomas cmp -s $testroot/wt/numbers.expected $testroot/wt/numbers
243 069bbb86 2022-03-07 thomas ret=$?
244 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
245 069bbb86 2022-03-07 thomas diff -u $testroot/wt/numbers.expected $testroot/wt/numbers
246 069bbb86 2022-03-07 thomas fi
247 069bbb86 2022-03-07 thomas test_done $testroot $ret
248 069bbb86 2022-03-07 thomas }
249 069bbb86 2022-03-07 thomas
250 069bbb86 2022-03-07 thomas test_patch_multiple_hunks() {
251 02e4f0d8 2022-03-08 thomas local testroot=`test_init patch_replace_multiple_hunks`
252 069bbb86 2022-03-07 thomas
253 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
254 069bbb86 2022-03-07 thomas ret=$?
255 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
256 069bbb86 2022-03-07 thomas test_done $testroot $ret
257 069bbb86 2022-03-07 thomas return 1
258 069bbb86 2022-03-07 thomas fi
259 069bbb86 2022-03-07 thomas
260 069bbb86 2022-03-07 thomas jot 100 > $testroot/wt/numbers
261 069bbb86 2022-03-07 thomas (cd $testroot/wt/ && got add numbers && got ci -m 'add numbers') \
262 069bbb86 2022-03-07 thomas >/dev/null
263 069bbb86 2022-03-07 thomas ret=$?
264 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
265 069bbb86 2022-03-07 thomas test_done $testroot $ret
266 069bbb86 2022-03-07 thomas return 1
267 069bbb86 2022-03-07 thomas fi
268 069bbb86 2022-03-07 thomas
269 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
270 069bbb86 2022-03-07 thomas --- numbers
271 069bbb86 2022-03-07 thomas +++ numbers
272 069bbb86 2022-03-07 thomas @@ -3,7 +3,7 @@
273 069bbb86 2022-03-07 thomas 3
274 069bbb86 2022-03-07 thomas 4
275 069bbb86 2022-03-07 thomas 5
276 069bbb86 2022-03-07 thomas -6
277 069bbb86 2022-03-07 thomas +foo
278 069bbb86 2022-03-07 thomas 7
279 069bbb86 2022-03-07 thomas 8
280 069bbb86 2022-03-07 thomas 9
281 069bbb86 2022-03-07 thomas @@ -57,7 +57,7 @@
282 069bbb86 2022-03-07 thomas 57
283 069bbb86 2022-03-07 thomas 58
284 069bbb86 2022-03-07 thomas 59
285 069bbb86 2022-03-07 thomas -60
286 069bbb86 2022-03-07 thomas +foo foo
287 069bbb86 2022-03-07 thomas 61
288 069bbb86 2022-03-07 thomas 62
289 069bbb86 2022-03-07 thomas 63
290 069bbb86 2022-03-07 thomas @@ -98,3 +98,6 @@
291 069bbb86 2022-03-07 thomas 98
292 069bbb86 2022-03-07 thomas 99
293 069bbb86 2022-03-07 thomas 100
294 069bbb86 2022-03-07 thomas +101
295 069bbb86 2022-03-07 thomas +102
296 069bbb86 2022-03-07 thomas +...
297 069bbb86 2022-03-07 thomas EOF
298 069bbb86 2022-03-07 thomas
299 069bbb86 2022-03-07 thomas echo "M numbers" > $testroot/stdout.expected
300 069bbb86 2022-03-07 thomas
301 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
302 069bbb86 2022-03-07 thomas ret=$?
303 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
304 069bbb86 2022-03-07 thomas test_done $testroot $ret
305 069bbb86 2022-03-07 thomas return 1
306 069bbb86 2022-03-07 thomas fi
307 069bbb86 2022-03-07 thomas
308 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
309 069bbb86 2022-03-07 thomas ret=$?
310 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
311 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
312 069bbb86 2022-03-07 thomas test_done $testroot $ret
313 069bbb86 2022-03-07 thomas return 1
314 069bbb86 2022-03-07 thomas fi
315 069bbb86 2022-03-07 thomas
316 069bbb86 2022-03-07 thomas jot 100 | sed -e 's/^6$/foo/' -e 's/^60$/foo foo/' \
317 069bbb86 2022-03-07 thomas > $testroot/wt/numbers.expected
318 069bbb86 2022-03-07 thomas echo "101" >> $testroot/wt/numbers.expected
319 069bbb86 2022-03-07 thomas echo "102" >> $testroot/wt/numbers.expected
320 069bbb86 2022-03-07 thomas echo "..." >> $testroot/wt/numbers.expected
321 069bbb86 2022-03-07 thomas
322 069bbb86 2022-03-07 thomas cmp -s $testroot/wt/numbers.expected $testroot/wt/numbers
323 069bbb86 2022-03-07 thomas ret=$?
324 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
325 069bbb86 2022-03-07 thomas diff -u $testroot/wt/numbers.expected $testroot/wt/numbers
326 069bbb86 2022-03-07 thomas fi
327 069bbb86 2022-03-07 thomas test_done $testroot $ret
328 069bbb86 2022-03-07 thomas }
329 069bbb86 2022-03-07 thomas
330 069bbb86 2022-03-07 thomas test_patch_multiple_files() {
331 069bbb86 2022-03-07 thomas local testroot=`test_init patch_multiple_files`
332 069bbb86 2022-03-07 thomas
333 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
334 069bbb86 2022-03-07 thomas ret=$?
335 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
336 069bbb86 2022-03-07 thomas test_done $testroot $ret
337 069bbb86 2022-03-07 thomas return 1
338 069bbb86 2022-03-07 thomas fi
339 069bbb86 2022-03-07 thomas
340 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
341 069bbb86 2022-03-07 thomas --- alpha Mon Mar 7 19:02:07 2022
342 069bbb86 2022-03-07 thomas +++ alpha Mon Mar 7 19:01:53 2022
343 069bbb86 2022-03-07 thomas @@ -1 +1,3 @@
344 069bbb86 2022-03-07 thomas +new
345 069bbb86 2022-03-07 thomas alpha
346 069bbb86 2022-03-07 thomas +available
347 069bbb86 2022-03-07 thomas --- beta Mon Mar 7 19:02:11 2022
348 069bbb86 2022-03-07 thomas +++ beta Mon Mar 7 19:01:46 2022
349 069bbb86 2022-03-07 thomas @@ -1 +1,3 @@
350 069bbb86 2022-03-07 thomas beta
351 069bbb86 2022-03-07 thomas +was
352 069bbb86 2022-03-07 thomas +improved
353 069bbb86 2022-03-07 thomas --- gamma/delta Mon Mar 7 19:02:17 2022
354 069bbb86 2022-03-07 thomas +++ gamma/delta Mon Mar 7 19:01:37 2022
355 069bbb86 2022-03-07 thomas @@ -1 +1 @@
356 069bbb86 2022-03-07 thomas -delta
357 069bbb86 2022-03-07 thomas +delta new
358 069bbb86 2022-03-07 thomas EOF
359 069bbb86 2022-03-07 thomas
360 069bbb86 2022-03-07 thomas echo "M alpha" > $testroot/stdout.expected
361 069bbb86 2022-03-07 thomas echo "M beta" >> $testroot/stdout.expected
362 069bbb86 2022-03-07 thomas echo "M gamma/delta" >> $testroot/stdout.expected
363 069bbb86 2022-03-07 thomas
364 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
365 069bbb86 2022-03-07 thomas ret=$?
366 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
367 02e4f0d8 2022-03-08 thomas test_done $testroot $ret
368 069bbb86 2022-03-07 thomas return 1
369 069bbb86 2022-03-07 thomas fi
370 069bbb86 2022-03-07 thomas
371 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
372 069bbb86 2022-03-07 thomas ret=$?
373 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
374 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
375 069bbb86 2022-03-07 thomas test_done $testroot $ret
376 069bbb86 2022-03-07 thomas return 1
377 069bbb86 2022-03-07 thomas fi
378 069bbb86 2022-03-07 thomas
379 069bbb86 2022-03-07 thomas printf 'new\nalpha\navailable\n' > $testroot/wt/alpha.expected
380 069bbb86 2022-03-07 thomas printf 'beta\nwas\nimproved\n' > $testroot/wt/beta.expected
381 069bbb86 2022-03-07 thomas printf 'delta new\n' > $testroot/wt/gamma/delta.expected
382 069bbb86 2022-03-07 thomas
383 069bbb86 2022-03-07 thomas for f in alpha beta gamma/delta; do
384 069bbb86 2022-03-07 thomas cmp -s $testroot/wt/$f.expected $testroot/wt/$f
385 069bbb86 2022-03-07 thomas ret=$?
386 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
387 069bbb86 2022-03-07 thomas diff -u $testroot/wt/$f.expected $testroot/wt/$f
388 069bbb86 2022-03-07 thomas test_done $testroot $ret
389 069bbb86 2022-03-07 thomas return 1
390 069bbb86 2022-03-07 thomas fi
391 069bbb86 2022-03-07 thomas done
392 069bbb86 2022-03-07 thomas
393 069bbb86 2022-03-07 thomas test_done $testroot 0
394 069bbb86 2022-03-07 thomas }
395 069bbb86 2022-03-07 thomas
396 069bbb86 2022-03-07 thomas test_patch_dont_apply() {
397 069bbb86 2022-03-07 thomas local testroot=`test_init patch_dont_apply`
398 069bbb86 2022-03-07 thomas
399 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
400 069bbb86 2022-03-07 thomas ret=$?
401 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
402 069bbb86 2022-03-07 thomas test_done $testroot $ret
403 069bbb86 2022-03-07 thomas return 1
404 069bbb86 2022-03-07 thomas fi
405 069bbb86 2022-03-07 thomas
406 7dd42450 2022-03-13 thomas jot 100 > $testroot/wt/numbers
407 7dd42450 2022-03-13 thomas (cd $testroot/wt && got add numbers && got commit -m 'add numbers') \
408 7dd42450 2022-03-13 thomas >/dev/null
409 7dd42450 2022-03-13 thomas ret=$?
410 7dd42450 2022-03-13 thomas if [ $ret -ne 0 ]; then
411 7dd42450 2022-03-13 thomas test_done $testroot $ret
412 7dd42450 2022-03-13 thomas return 1
413 7dd42450 2022-03-13 thomas fi
414 7dd42450 2022-03-13 thomas
415 7dd42450 2022-03-13 thomas cat <<EOF > $testroot/wt/patch
416 49114f01 2022-03-22 thomas --- alpha
417 49114f01 2022-03-22 thomas +++ alpha
418 49114f01 2022-03-22 thomas @@ -1 +1,2 @@
419 49114f01 2022-03-22 thomas +hatsuseno
420 49114f01 2022-03-22 thomas alpha something
421 7dd42450 2022-03-13 thomas --- numbers
422 7dd42450 2022-03-13 thomas +++ /dev/null
423 7dd42450 2022-03-13 thomas @@ -1,9 +0,0 @@
424 7dd42450 2022-03-13 thomas -1
425 7dd42450 2022-03-13 thomas -2
426 7dd42450 2022-03-13 thomas -3
427 7dd42450 2022-03-13 thomas -4
428 7dd42450 2022-03-13 thomas -5
429 7dd42450 2022-03-13 thomas -6
430 7dd42450 2022-03-13 thomas -7
431 7dd42450 2022-03-13 thomas -8
432 7dd42450 2022-03-13 thomas -9
433 7dd42450 2022-03-13 thomas EOF
434 7dd42450 2022-03-13 thomas
435 49114f01 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout 2> /dev/null
436 7dd42450 2022-03-13 thomas ret=$?
437 7dd42450 2022-03-13 thomas if [ $ret -eq 0 ]; then # should fail
438 7dd42450 2022-03-13 thomas test_done $testroot 1
439 069bbb86 2022-03-07 thomas return 1
440 069bbb86 2022-03-07 thomas fi
441 069bbb86 2022-03-07 thomas
442 49114f01 2022-03-22 thomas cat <<EOF > $testroot/stdout.expected
443 49114f01 2022-03-22 thomas # alpha
444 49114f01 2022-03-22 thomas @@ -1,1 +1,2 @@ hunk failed to apply
445 49114f01 2022-03-22 thomas # numbers
446 49114f01 2022-03-22 thomas @@ -1,9 +0,0 @@ hunk failed to apply
447 49114f01 2022-03-22 thomas EOF
448 49114f01 2022-03-22 thomas
449 49114f01 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
450 7dd42450 2022-03-13 thomas ret=$?
451 7dd42450 2022-03-13 thomas if [ $ret -ne 0 ]; then
452 49114f01 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
453 7dd42450 2022-03-13 thomas fi
454 069bbb86 2022-03-07 thomas test_done $testroot $ret
455 069bbb86 2022-03-07 thomas }
456 069bbb86 2022-03-07 thomas
457 069bbb86 2022-03-07 thomas test_patch_malformed() {
458 069bbb86 2022-03-07 thomas local testroot=`test_init patch_malformed`
459 069bbb86 2022-03-07 thomas
460 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
461 069bbb86 2022-03-07 thomas ret=$?
462 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
463 069bbb86 2022-03-07 thomas test_done $testroot $ret
464 069bbb86 2022-03-07 thomas return 1
465 069bbb86 2022-03-07 thomas fi
466 069bbb86 2022-03-07 thomas
467 069bbb86 2022-03-07 thomas # missing "@@"
468 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
469 069bbb86 2022-03-07 thomas --- alpha
470 069bbb86 2022-03-07 thomas +++ alpha
471 069bbb86 2022-03-07 thomas @@ -1 +1,2
472 069bbb86 2022-03-07 thomas +hatsuseno
473 069bbb86 2022-03-07 thomas alpha
474 069bbb86 2022-03-07 thomas EOF
475 069bbb86 2022-03-07 thomas
476 069bbb86 2022-03-07 thomas echo -n > $testroot/stdout.expected
477 069bbb86 2022-03-07 thomas echo "got: malformed patch" > $testroot/stderr.expected
478 069bbb86 2022-03-07 thomas
479 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) \
480 069bbb86 2022-03-07 thomas > $testroot/stdout \
481 069bbb86 2022-03-07 thomas 2> $testroot/stderr
482 069bbb86 2022-03-07 thomas ret=$?
483 10cdd9aa 2022-03-08 thomas if [ $ret -eq 0 ]; then
484 069bbb86 2022-03-07 thomas echo "got managed to apply an invalid patch"
485 069bbb86 2022-03-07 thomas test_done $testroot 1
486 069bbb86 2022-03-07 thomas return 1
487 069bbb86 2022-03-07 thomas fi
488 069bbb86 2022-03-07 thomas
489 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
490 069bbb86 2022-03-07 thomas ret=$?
491 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
492 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
493 069bbb86 2022-03-07 thomas test_done $testroot $ret
494 069bbb86 2022-03-07 thomas return 1
495 069bbb86 2022-03-07 thomas fi
496 069bbb86 2022-03-07 thomas
497 069bbb86 2022-03-07 thomas cmp -s $testroot/stderr.expected $testroot/stderr
498 069bbb86 2022-03-07 thomas ret=$?
499 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
500 069bbb86 2022-03-07 thomas diff -u $testroot/stderr.expected $testroot/stderr
501 069bbb86 2022-03-07 thomas test_done $testroot $ret
502 069bbb86 2022-03-07 thomas return 1
503 069bbb86 2022-03-07 thomas fi
504 069bbb86 2022-03-07 thomas
505 069bbb86 2022-03-07 thomas # wrong first character
506 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
507 069bbb86 2022-03-07 thomas --- alpha
508 069bbb86 2022-03-07 thomas +++ alpha
509 069bbb86 2022-03-07 thomas @@ -1 +1,2 @@
510 069bbb86 2022-03-07 thomas +hatsuseno
511 069bbb86 2022-03-07 thomas alpha
512 069bbb86 2022-03-07 thomas EOF
513 069bbb86 2022-03-07 thomas
514 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) \
515 069bbb86 2022-03-07 thomas > $testroot/stdout \
516 069bbb86 2022-03-07 thomas 2> $testroot/stderr
517 069bbb86 2022-03-07 thomas ret=$?
518 10cdd9aa 2022-03-08 thomas if [ $ret -eq 0 ]; then
519 069bbb86 2022-03-07 thomas echo "got managed to apply an invalid patch"
520 069bbb86 2022-03-07 thomas test_done $testroot 1
521 069bbb86 2022-03-07 thomas return 1
522 069bbb86 2022-03-07 thomas fi
523 069bbb86 2022-03-07 thomas
524 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
525 069bbb86 2022-03-07 thomas ret=$?
526 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
527 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
528 069bbb86 2022-03-07 thomas test_done $testroot $ret
529 069bbb86 2022-03-07 thomas return 1
530 069bbb86 2022-03-07 thomas fi
531 069bbb86 2022-03-07 thomas
532 069bbb86 2022-03-07 thomas cmp -s $testroot/stderr.expected $testroot/stderr
533 069bbb86 2022-03-07 thomas ret=$?
534 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
535 069bbb86 2022-03-07 thomas diff -u $testroot/stderr.expected $testroot/stderr
536 069bbb86 2022-03-07 thomas test_done $testroot $ret
537 069bbb86 2022-03-07 thomas return 1
538 069bbb86 2022-03-07 thomas fi
539 069bbb86 2022-03-07 thomas
540 069bbb86 2022-03-07 thomas test_done $testroot $ret
541 069bbb86 2022-03-07 thomas }
542 069bbb86 2022-03-07 thomas
543 069bbb86 2022-03-07 thomas test_patch_no_patch() {
544 069bbb86 2022-03-07 thomas local testroot=`test_init patch_no_patch`
545 069bbb86 2022-03-07 thomas
546 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
547 069bbb86 2022-03-07 thomas ret=$?
548 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
549 069bbb86 2022-03-07 thomas test_done $testroot $ret
550 069bbb86 2022-03-07 thomas return 1
551 069bbb86 2022-03-07 thomas fi
552 069bbb86 2022-03-07 thomas
553 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
554 069bbb86 2022-03-07 thomas hello world!
555 069bbb86 2022-03-07 thomas ...
556 069bbb86 2022-03-07 thomas
557 069bbb86 2022-03-07 thomas some other nonsense
558 069bbb86 2022-03-07 thomas ...
559 069bbb86 2022-03-07 thomas
560 069bbb86 2022-03-07 thomas there's no patch in here!
561 069bbb86 2022-03-07 thomas EOF
562 069bbb86 2022-03-07 thomas
563 069bbb86 2022-03-07 thomas echo -n > $testroot/stdout.expected
564 069bbb86 2022-03-07 thomas echo "got: no patch found" > $testroot/stderr.expected
565 069bbb86 2022-03-07 thomas
566 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) \
567 069bbb86 2022-03-07 thomas > $testroot/stdout \
568 069bbb86 2022-03-07 thomas 2> $testroot/stderr
569 069bbb86 2022-03-07 thomas ret=$?
570 10cdd9aa 2022-03-08 thomas if [ $ret -eq 0 ]; then # should fail
571 069bbb86 2022-03-07 thomas test_done $testroot 1
572 069bbb86 2022-03-07 thomas return 1
573 069bbb86 2022-03-07 thomas fi
574 e1c219c8 2022-04-22 thomas
575 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
576 069bbb86 2022-03-07 thomas ret=$?
577 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
578 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
579 069bbb86 2022-03-07 thomas test_done $testroot $ret
580 069bbb86 2022-03-07 thomas return 1
581 069bbb86 2022-03-07 thomas fi
582 069bbb86 2022-03-07 thomas
583 069bbb86 2022-03-07 thomas cmp -s $testroot/stderr.expected $testroot/stderr
584 069bbb86 2022-03-07 thomas ret=$?
585 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
586 069bbb86 2022-03-07 thomas diff -u $testroot/stderr.expected $testroot/stderr
587 069bbb86 2022-03-07 thomas test_done $testroot $ret
588 069bbb86 2022-03-07 thomas return 1
589 069bbb86 2022-03-07 thomas fi
590 069bbb86 2022-03-07 thomas
591 069bbb86 2022-03-07 thomas test_done $testroot $ret
592 069bbb86 2022-03-07 thomas }
593 069bbb86 2022-03-07 thomas
594 069bbb86 2022-03-07 thomas test_patch_equals_for_context() {
595 9a49df74 2022-04-23 thomas local testroot=`test_init patch_equals_for_context`
596 069bbb86 2022-03-07 thomas
597 069bbb86 2022-03-07 thomas got checkout $testroot/repo $testroot/wt > /dev/null
598 069bbb86 2022-03-07 thomas ret=$?
599 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
600 069bbb86 2022-03-07 thomas test_done $testroot $ret
601 069bbb86 2022-03-07 thomas return 1
602 069bbb86 2022-03-07 thomas fi
603 069bbb86 2022-03-07 thomas
604 069bbb86 2022-03-07 thomas cat <<EOF > $testroot/wt/patch
605 069bbb86 2022-03-07 thomas --- alpha
606 069bbb86 2022-03-07 thomas +++ alpha
607 069bbb86 2022-03-07 thomas @@ -1 +1,2 @@
608 069bbb86 2022-03-07 thomas +hatsuseno
609 069bbb86 2022-03-07 thomas =alpha
610 069bbb86 2022-03-07 thomas EOF
611 069bbb86 2022-03-07 thomas
612 069bbb86 2022-03-07 thomas echo "M alpha" > $testroot/stdout.expected
613 069bbb86 2022-03-07 thomas
614 069bbb86 2022-03-07 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
615 069bbb86 2022-03-07 thomas ret=$?
616 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
617 069bbb86 2022-03-07 thomas test_done $testroot $ret
618 069bbb86 2022-03-07 thomas return 1
619 069bbb86 2022-03-07 thomas fi
620 069bbb86 2022-03-07 thomas
621 069bbb86 2022-03-07 thomas cmp -s $testroot/stdout.expected $testroot/stdout
622 069bbb86 2022-03-07 thomas ret=$?
623 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
624 069bbb86 2022-03-07 thomas diff -u $testroot/stdout.expected $testroot/stdout
625 069bbb86 2022-03-07 thomas test_done $testroot $ret
626 069bbb86 2022-03-07 thomas return 1
627 069bbb86 2022-03-07 thomas fi
628 069bbb86 2022-03-07 thomas
629 069bbb86 2022-03-07 thomas echo hatsuseno > $testroot/wt/alpha.expected
630 069bbb86 2022-03-07 thomas echo alpha >> $testroot/wt/alpha.expected
631 069bbb86 2022-03-07 thomas cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
632 069bbb86 2022-03-07 thomas ret=$?
633 10cdd9aa 2022-03-08 thomas if [ $ret -ne 0 ]; then
634 069bbb86 2022-03-07 thomas diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
635 069bbb86 2022-03-07 thomas fi
636 069bbb86 2022-03-07 thomas test_done $testroot $ret
637 069bbb86 2022-03-07 thomas }
638 bb2ad8ff 2022-03-13 thomas
639 bb2ad8ff 2022-03-13 thomas test_patch_rename() {
640 bb2ad8ff 2022-03-13 thomas local testroot=`test_init patch_rename`
641 bb2ad8ff 2022-03-13 thomas
642 bb2ad8ff 2022-03-13 thomas got checkout $testroot/repo $testroot/wt > /dev/null
643 bb2ad8ff 2022-03-13 thomas ret=$?
644 bb2ad8ff 2022-03-13 thomas if [ $ret -ne 0 ]; then
645 bb2ad8ff 2022-03-13 thomas test_done $testroot $ret
646 bb2ad8ff 2022-03-13 thomas return 1
647 bb2ad8ff 2022-03-13 thomas fi
648 bb2ad8ff 2022-03-13 thomas
649 bb2ad8ff 2022-03-13 thomas cat <<EOF > $testroot/wt/patch
650 8afe1f71 2022-05-12 thomas diff --git a/beta b/iota
651 8afe1f71 2022-05-12 thomas similarity index 100%
652 8afe1f71 2022-05-12 thomas rename from beta
653 8afe1f71 2022-05-12 thomas rename to iota
654 be53ddb1 2022-03-22 thomas diff --git a/alpha b/eta
655 be53ddb1 2022-03-22 thomas --- a/alpha
656 be53ddb1 2022-03-22 thomas +++ b/eta
657 8afe1f71 2022-05-12 thomas @@ -1 +1 @@
658 8afe1f71 2022-05-12 thomas -alpha
659 8afe1f71 2022-05-12 thomas +eta
660 bb2ad8ff 2022-03-13 thomas EOF
661 069bbb86 2022-03-07 thomas
662 8afe1f71 2022-05-12 thomas echo 'D beta' > $testroot/stdout.expected
663 8afe1f71 2022-05-12 thomas echo 'A iota' >> $testroot/stdout.expected
664 8afe1f71 2022-05-12 thomas echo 'D alpha' >> $testroot/stdout.expected
665 8afe1f71 2022-05-12 thomas echo 'A eta' >> $testroot/stdout.expected
666 bb2ad8ff 2022-03-13 thomas
667 bb2ad8ff 2022-03-13 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
668 bb2ad8ff 2022-03-13 thomas ret=$?
669 bb2ad8ff 2022-03-13 thomas if [ $ret -ne 0 ]; then
670 bb2ad8ff 2022-03-13 thomas test_done $testroot $ret
671 bb2ad8ff 2022-03-13 thomas return 1
672 bb2ad8ff 2022-03-13 thomas fi
673 bb2ad8ff 2022-03-13 thomas
674 bb2ad8ff 2022-03-13 thomas cmp -s $testroot/stdout.expected $testroot/stdout
675 bb2ad8ff 2022-03-13 thomas ret=$?
676 bb2ad8ff 2022-03-13 thomas if [ $ret -ne 0 ]; then
677 bb2ad8ff 2022-03-13 thomas diff -u $testroot/stdout.expected $testroot/stdout
678 bb2ad8ff 2022-03-13 thomas test_done $testroot $ret
679 bb2ad8ff 2022-03-13 thomas return 1
680 bb2ad8ff 2022-03-13 thomas fi
681 bb2ad8ff 2022-03-13 thomas
682 8afe1f71 2022-05-12 thomas if [ -f $testroot/wt/alpha -o -f $testroot/wt/beta ]; then
683 8afe1f71 2022-05-12 thomas echo "alpha or beta were not removed" >&2
684 bb2ad8ff 2022-03-13 thomas test_done $testroot 1
685 bb2ad8ff 2022-03-13 thomas return 1
686 bb2ad8ff 2022-03-13 thomas fi
687 8afe1f71 2022-05-12 thomas if [ ! -f $testroot/wt/iota -o ! -f $testroot/wt/eta ]; then
688 8afe1f71 2022-05-12 thomas echo "iota or eta were not created" >&2
689 bb2ad8ff 2022-03-13 thomas test_done $testroot 1
690 bb2ad8ff 2022-03-13 thomas return 1
691 bb2ad8ff 2022-03-13 thomas fi
692 bb2ad8ff 2022-03-13 thomas
693 8afe1f71 2022-05-12 thomas echo beta > $testroot/wt/iota.expected
694 8afe1f71 2022-05-12 thomas cmp -s $testroot/wt/iota.expected $testroot/wt/iota
695 bb2ad8ff 2022-03-13 thomas ret=$?
696 bb2ad8ff 2022-03-13 thomas if [ $ret -ne 0 ]; then
697 8afe1f71 2022-05-12 thomas diff -u $testroot/wt/iota.expected $testroot/wt/iota
698 bb2ad8ff 2022-03-13 thomas test_done $testroot $ret
699 bb2ad8ff 2022-03-13 thomas return 1
700 bb2ad8ff 2022-03-13 thomas fi
701 bb2ad8ff 2022-03-13 thomas
702 8afe1f71 2022-05-12 thomas echo eta > $testroot/wt/eta.expected
703 8afe1f71 2022-05-12 thomas cmp -s $testroot/wt/eta.expected $testroot/wt/eta
704 bb2ad8ff 2022-03-13 thomas ret=$?
705 bb2ad8ff 2022-03-13 thomas if [ $ret -ne 0 ]; then
706 8afe1f71 2022-05-12 thomas diff -u $testroot/wt/eta.expected $testroot/wt/eta
707 bb2ad8ff 2022-03-13 thomas test_done $testroot $ret
708 bb2ad8ff 2022-03-13 thomas return 1
709 bb2ad8ff 2022-03-13 thomas fi
710 bb2ad8ff 2022-03-13 thomas
711 bb2ad8ff 2022-03-13 thomas test_done $testroot $ret
712 bb2ad8ff 2022-03-13 thomas }
713 10e55613 2022-03-22 thomas
714 10e55613 2022-03-22 thomas test_patch_illegal_status() {
715 10e55613 2022-03-22 thomas local testroot=`test_init patch_illegal_status`
716 10e55613 2022-03-22 thomas
717 10e55613 2022-03-22 thomas got checkout $testroot/repo $testroot/wt > /dev/null
718 10e55613 2022-03-22 thomas ret=$?
719 10e55613 2022-03-22 thomas if [ $ret -ne 0 ]; then
720 10e55613 2022-03-22 thomas test_done $testroot $ret
721 10e55613 2022-03-22 thomas return 1
722 10e55613 2022-03-22 thomas fi
723 10e55613 2022-03-22 thomas
724 49114f01 2022-03-22 thomas # try to patch an obstructed file, add a versioned one, edit a
725 49114f01 2022-03-22 thomas # non existent file and an unversioned one, and remove a
726 49114f01 2022-03-22 thomas # non existent file.
727 10e55613 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
728 49114f01 2022-03-22 thomas --- alpha
729 49114f01 2022-03-22 thomas +++ alpha
730 49114f01 2022-03-22 thomas @@ -1 +1,2 @@
731 49114f01 2022-03-22 thomas alpha
732 49114f01 2022-03-22 thomas +was edited
733 49114f01 2022-03-22 thomas --- /dev/null
734 49114f01 2022-03-22 thomas +++ beta
735 49114f01 2022-03-22 thomas @@ -0,0 +1 @@
736 49114f01 2022-03-22 thomas +beta
737 10e55613 2022-03-22 thomas --- iota
738 10e55613 2022-03-22 thomas +++ iota
739 10e55613 2022-03-22 thomas @@ -1 +1 @@
740 49114f01 2022-03-22 thomas -iota
741 49114f01 2022-03-22 thomas +IOTA
742 49114f01 2022-03-22 thomas --- kappa
743 49114f01 2022-03-22 thomas +++ kappa
744 49114f01 2022-03-22 thomas @@ -1 +1 @@
745 49114f01 2022-03-22 thomas -kappa
746 49114f01 2022-03-22 thomas +KAPPA
747 49114f01 2022-03-22 thomas --- lambda
748 49114f01 2022-03-22 thomas +++ /dev/null
749 49114f01 2022-03-22 thomas @@ -1 +0,0 @@
750 49114f01 2022-03-22 thomas -lambda
751 10e55613 2022-03-22 thomas EOF
752 42d9d68e 2022-03-13 thomas
753 49114f01 2022-03-22 thomas echo kappa > $testroot/wt/kappa
754 10e55613 2022-03-22 thomas rm $testroot/wt/alpha
755 10e55613 2022-03-22 thomas mkdir $testroot/wt/alpha
756 10e55613 2022-03-22 thomas
757 49114f01 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout \
758 10e55613 2022-03-22 thomas 2> $testroot/stderr
759 10e55613 2022-03-22 thomas ret=$?
760 10e55613 2022-03-22 thomas if [ $ret -eq 0 ]; then
761 10e55613 2022-03-22 thomas echo "edited a missing file" >&2
762 10e55613 2022-03-22 thomas test_done $testroot $ret
763 10e55613 2022-03-22 thomas return 1
764 10e55613 2022-03-22 thomas fi
765 10e55613 2022-03-22 thomas
766 49114f01 2022-03-22 thomas cat <<EOF > $testroot/stdout.expected
767 49114f01 2022-03-22 thomas # alpha
768 49114f01 2022-03-22 thomas # beta
769 49114f01 2022-03-22 thomas # iota
770 49114f01 2022-03-22 thomas # kappa
771 49114f01 2022-03-22 thomas # lambda
772 49114f01 2022-03-22 thomas EOF
773 10e55613 2022-03-22 thomas
774 49114f01 2022-03-22 thomas cat <<EOF > $testroot/stderr.expected
775 49114f01 2022-03-22 thomas got: alpha: file has unexpected status
776 49114f01 2022-03-22 thomas got: beta: file has unexpected status
777 49114f01 2022-03-22 thomas got: iota: No such file or directory
778 49114f01 2022-03-22 thomas got: kappa: file has unexpected status
779 49114f01 2022-03-22 thomas got: lambda: No such file or directory
780 49114f01 2022-03-22 thomas got: patch failed to apply
781 10e55613 2022-03-22 thomas EOF
782 10e55613 2022-03-22 thomas
783 49114f01 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
784 10e55613 2022-03-22 thomas ret=$?
785 49114f01 2022-03-22 thomas if [ $ret -ne 0 ]; then
786 49114f01 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
787 10e55613 2022-03-22 thomas test_done $testroot $ret
788 10e55613 2022-03-22 thomas return 1
789 10e55613 2022-03-22 thomas fi
790 10e55613 2022-03-22 thomas
791 10e55613 2022-03-22 thomas cmp -s $testroot/stderr.expected $testroot/stderr
792 10e55613 2022-03-22 thomas ret=$?
793 49114f01 2022-03-22 thomas if [ $ret -ne 0 ]; then
794 10e55613 2022-03-22 thomas diff -u $testroot/stderr.expected $testroot/stderr
795 814624e7 2022-03-22 thomas test_done $testroot $ret
796 814624e7 2022-03-22 thomas return 1
797 10e55613 2022-03-22 thomas fi
798 814624e7 2022-03-22 thomas
799 814624e7 2022-03-22 thomas (cd $testroot/wt && got status) > $testroot/stdout
800 814624e7 2022-03-22 thomas cat <<EOF > $testroot/stdout.expected
801 814624e7 2022-03-22 thomas ~ alpha
802 814624e7 2022-03-22 thomas ? kappa
803 814624e7 2022-03-22 thomas ? patch
804 814624e7 2022-03-22 thomas EOF
805 814624e7 2022-03-22 thomas
806 814624e7 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
807 814624e7 2022-03-22 thomas ret=$?
808 814624e7 2022-03-22 thomas if [ $ret -ne 0 ]; then
809 814624e7 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
810 814624e7 2022-03-22 thomas fi
811 eaf99875 2022-03-22 thomas test_done $testroot $ret
812 eaf99875 2022-03-22 thomas }
813 eaf99875 2022-03-22 thomas
814 eaf99875 2022-03-22 thomas test_patch_nop() {
815 eaf99875 2022-03-22 thomas local testroot=`test_init patch_nop`
816 eaf99875 2022-03-22 thomas
817 eaf99875 2022-03-22 thomas got checkout $testroot/repo $testroot/wt > /dev/null
818 eaf99875 2022-03-22 thomas ret=$?
819 eaf99875 2022-03-22 thomas if [ $ret -ne 0 ]; then
820 eaf99875 2022-03-22 thomas test_done $testroot $ret
821 eaf99875 2022-03-22 thomas return 1
822 eaf99875 2022-03-22 thomas fi
823 eaf99875 2022-03-22 thomas
824 eaf99875 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
825 eaf99875 2022-03-22 thomas --- alpha
826 eaf99875 2022-03-22 thomas +++ alpha
827 eaf99875 2022-03-22 thomas @@ -1 +1 @@
828 eaf99875 2022-03-22 thomas -alpha
829 eaf99875 2022-03-22 thomas +cafe alpha
830 eaf99875 2022-03-22 thomas --- beta
831 eaf99875 2022-03-22 thomas +++ /dev/null
832 eaf99875 2022-03-22 thomas @@ -1 +0,0 @@
833 eaf99875 2022-03-22 thomas -beta
834 be53ddb1 2022-03-22 thomas diff --git a/gamma/delta b/gamma/delta.new
835 eaf99875 2022-03-22 thomas --- gamma/delta
836 eaf99875 2022-03-22 thomas +++ gamma/delta.new
837 eaf99875 2022-03-22 thomas @@ -1 +1 @@
838 eaf99875 2022-03-22 thomas -delta
839 eaf99875 2022-03-22 thomas +delta updated and renamed!
840 eaf99875 2022-03-22 thomas EOF
841 eaf99875 2022-03-22 thomas
842 eaf99875 2022-03-22 thomas (cd $testroot/wt && got patch -n patch)
843 eaf99875 2022-03-22 thomas ret=$?
844 eaf99875 2022-03-22 thomas if [ $ret -ne 0 ]; then
845 eaf99875 2022-03-22 thomas test_done $testroot $ret
846 eaf99875 2022-03-22 thomas return 1
847 10e55613 2022-03-22 thomas fi
848 eaf99875 2022-03-22 thomas
849 eaf99875 2022-03-22 thomas # remove the patch to avoid the ? entry
850 eaf99875 2022-03-22 thomas rm $testroot/wt/patch
851 eaf99875 2022-03-22 thomas
852 eaf99875 2022-03-22 thomas (cd $testroot/wt && got status) > $testroot/stdout
853 eaf99875 2022-03-22 thomas ret=$?
854 eaf99875 2022-03-22 thomas if [ $ret -ne 0 ]; then
855 eaf99875 2022-03-22 thomas test_done $testroot $ret
856 eaf99875 2022-03-22 thomas return 1
857 eaf99875 2022-03-22 thomas fi
858 eaf99875 2022-03-22 thomas
859 eaf99875 2022-03-22 thomas echo -n > $testroot/stdout.expected
860 eaf99875 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
861 eaf99875 2022-03-22 thomas ret=$?
862 eaf99875 2022-03-22 thomas if [ $ret -ne 0 ]; then
863 eaf99875 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
864 eaf99875 2022-03-22 thomas fi
865 10e55613 2022-03-22 thomas test_done $testroot $ret
866 da09d8ed 2022-03-22 thomas }
867 da09d8ed 2022-03-22 thomas
868 da09d8ed 2022-03-22 thomas test_patch_preserve_perm() {
869 da09d8ed 2022-03-22 thomas local testroot=`test_init patch_preserve_perm`
870 da09d8ed 2022-03-22 thomas
871 da09d8ed 2022-03-22 thomas got checkout $testroot/repo $testroot/wt > /dev/null
872 da09d8ed 2022-03-22 thomas ret=$?
873 da09d8ed 2022-03-22 thomas if [ $ret -ne 0 ]; then
874 da09d8ed 2022-03-22 thomas test_done $testroot $ret
875 da09d8ed 2022-03-22 thomas return 1
876 da09d8ed 2022-03-22 thomas fi
877 da09d8ed 2022-03-22 thomas
878 da09d8ed 2022-03-22 thomas chmod +x $testroot/wt/alpha
879 da09d8ed 2022-03-22 thomas (cd $testroot/wt && got commit -m 'alpha executable') > /dev/null
880 da09d8ed 2022-03-22 thomas ret=$?
881 da09d8ed 2022-03-22 thomas if [ $ret -ne 0 ]; then
882 da09d8ed 2022-03-22 thomas test_done $testroot $ret
883 da09d8ed 2022-03-22 thomas return 1
884 da09d8ed 2022-03-22 thomas fi
885 da09d8ed 2022-03-22 thomas
886 da09d8ed 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
887 da09d8ed 2022-03-22 thomas --- alpha
888 da09d8ed 2022-03-22 thomas +++ alpha
889 da09d8ed 2022-03-22 thomas @@ -1 +1,2 @@
890 da09d8ed 2022-03-22 thomas alpha
891 da09d8ed 2022-03-22 thomas +was edited
892 da09d8ed 2022-03-22 thomas EOF
893 da09d8ed 2022-03-22 thomas
894 da09d8ed 2022-03-22 thomas (cd $testroot/wt && got patch patch) > /dev/null
895 da09d8ed 2022-03-22 thomas ret=$?
896 da09d8ed 2022-03-22 thomas if [ $ret -ne 0 ]; then
897 da09d8ed 2022-03-22 thomas test_done $testroot $ret
898 da09d8ed 2022-03-22 thomas return 1
899 da09d8ed 2022-03-22 thomas fi
900 da09d8ed 2022-03-22 thomas
901 da09d8ed 2022-03-22 thomas if [ ! -x $testroot/wt/alpha ]; then
902 da09d8ed 2022-03-22 thomas echo "alpha is no more executable!" >&2
903 da09d8ed 2022-03-22 thomas test_done $testroot 1
904 e0c1f81c 2022-03-22 thomas return 1
905 e0c1f81c 2022-03-22 thomas fi
906 e0c1f81c 2022-03-22 thomas test_done $testroot 0
907 e0c1f81c 2022-03-22 thomas }
908 e0c1f81c 2022-03-22 thomas
909 e0c1f81c 2022-03-22 thomas test_patch_create_dirs() {
910 e0c1f81c 2022-03-22 thomas local testroot=`test_init patch_create_dirs`
911 e0c1f81c 2022-03-22 thomas
912 e0c1f81c 2022-03-22 thomas got checkout $testroot/repo $testroot/wt > /dev/null
913 e0c1f81c 2022-03-22 thomas ret=$?
914 e0c1f81c 2022-03-22 thomas if [ $ret -ne 0 ]; then
915 e0c1f81c 2022-03-22 thomas test_done $testroot $ret
916 e0c1f81c 2022-03-22 thomas return 1
917 e0c1f81c 2022-03-22 thomas fi
918 e0c1f81c 2022-03-22 thomas
919 e0c1f81c 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
920 e0c1f81c 2022-03-22 thomas --- /dev/null
921 e0c1f81c 2022-03-22 thomas +++ iota/kappa/lambda
922 e0c1f81c 2022-03-22 thomas @@ -0,0 +1 @@
923 e0c1f81c 2022-03-22 thomas +lambda
924 e0c1f81c 2022-03-22 thomas EOF
925 e0c1f81c 2022-03-22 thomas
926 e0c1f81c 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
927 e0c1f81c 2022-03-22 thomas ret=$?
928 e0c1f81c 2022-03-22 thomas if [ $ret -ne 0 ]; then
929 e0c1f81c 2022-03-22 thomas test_done $testroot $ret
930 da09d8ed 2022-03-22 thomas return 1
931 da09d8ed 2022-03-22 thomas fi
932 e0c1f81c 2022-03-22 thomas
933 e0c1f81c 2022-03-22 thomas echo 'A iota/kappa/lambda' >> $testroot/stdout.expected
934 e0c1f81c 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
935 e0c1f81c 2022-03-22 thomas ret=$?
936 e0c1f81c 2022-03-22 thomas if [ $ret -ne 0 ]; then
937 e0c1f81c 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
938 e0c1f81c 2022-03-22 thomas test_done $testroot $ret
939 e0c1f81c 2022-03-22 thomas return 1
940 e0c1f81c 2022-03-22 thomas fi
941 e0c1f81c 2022-03-22 thomas
942 e0c1f81c 2022-03-22 thomas if [ ! -f $testroot/wt/iota/kappa/lambda ]; then
943 e0c1f81c 2022-03-22 thomas echo "file not created!" >&2
944 e0c1f81c 2022-03-22 thomas test_done $testroot $ret
945 e0c1f81c 2022-03-22 thomas return 1
946 e0c1f81c 2022-03-22 thomas fi
947 da09d8ed 2022-03-22 thomas test_done $testroot 0
948 10e55613 2022-03-22 thomas }
949 10e55613 2022-03-22 thomas
950 49114f01 2022-03-22 thomas test_patch_with_offset() {
951 49114f01 2022-03-22 thomas local testroot=`test_init patch_with_offset`
952 49114f01 2022-03-22 thomas
953 49114f01 2022-03-22 thomas got checkout $testroot/repo $testroot/wt > /dev/null
954 49114f01 2022-03-22 thomas ret=$?
955 49114f01 2022-03-22 thomas if [ $ret -ne 0 ]; then
956 49114f01 2022-03-22 thomas test_done $testroot $ret
957 49114f01 2022-03-22 thomas return 1
958 49114f01 2022-03-22 thomas fi
959 49114f01 2022-03-22 thomas
960 49114f01 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
961 49114f01 2022-03-22 thomas --- numbers
962 49114f01 2022-03-22 thomas +++ numbers
963 49114f01 2022-03-22 thomas @@ -47,7 +47,7 @@
964 49114f01 2022-03-22 thomas 47
965 49114f01 2022-03-22 thomas 48
966 49114f01 2022-03-22 thomas 49
967 49114f01 2022-03-22 thomas -50
968 49114f01 2022-03-22 thomas +midway tru it!
969 49114f01 2022-03-22 thomas 51
970 49114f01 2022-03-22 thomas 52
971 49114f01 2022-03-22 thomas 53
972 49114f01 2022-03-22 thomas @@ -87,7 +87,7 @@
973 49114f01 2022-03-22 thomas 87
974 49114f01 2022-03-22 thomas 88
975 49114f01 2022-03-22 thomas 89
976 49114f01 2022-03-22 thomas -90
977 49114f01 2022-03-22 thomas +almost there!
978 49114f01 2022-03-22 thomas 91
979 49114f01 2022-03-22 thomas 92
980 49114f01 2022-03-22 thomas 93
981 49114f01 2022-03-22 thomas EOF
982 49114f01 2022-03-22 thomas
983 49114f01 2022-03-22 thomas jot 100 > $testroot/wt/numbers
984 49114f01 2022-03-22 thomas ed $testroot/wt/numbers <<EOF > /dev/null 2> /dev/null
985 49114f01 2022-03-22 thomas 1,10d
986 49114f01 2022-03-22 thomas 50r !jot 20
987 49114f01 2022-03-22 thomas w
988 49114f01 2022-03-22 thomas q
989 49114f01 2022-03-22 thomas EOF
990 49114f01 2022-03-22 thomas
991 49114f01 2022-03-22 thomas (cd $testroot/wt && got add numbers && got commit -m '+numbers') \
992 49114f01 2022-03-22 thomas > /dev/null
993 49114f01 2022-03-22 thomas ret=$?
994 49114f01 2022-03-22 thomas if [ $ret -ne 0 ]; then
995 49114f01 2022-03-22 thomas test_done $testroot $ret
996 49114f01 2022-03-22 thomas return 1
997 49114f01 2022-03-22 thomas fi
998 49114f01 2022-03-22 thomas
999 49114f01 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
1000 49114f01 2022-03-22 thomas ret=$?
1001 49114f01 2022-03-22 thomas if [ $ret -ne 0 ]; then
1002 49114f01 2022-03-22 thomas test_done $testroot/wt $ret
1003 49114f01 2022-03-22 thomas return 1
1004 49114f01 2022-03-22 thomas fi
1005 49114f01 2022-03-22 thomas
1006 49114f01 2022-03-22 thomas cat <<EOF > $testroot/stdout.expected
1007 49114f01 2022-03-22 thomas M numbers
1008 49114f01 2022-03-22 thomas @@ -47,7 +47,7 @@ applied with offset -10
1009 49114f01 2022-03-22 thomas @@ -87,7 +87,7 @@ applied with offset 10
1010 be53ddb1 2022-03-22 thomas EOF
1011 be53ddb1 2022-03-22 thomas
1012 be53ddb1 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1013 be53ddb1 2022-03-22 thomas ret=$?
1014 be53ddb1 2022-03-22 thomas if [ $ret -ne 0 ]; then
1015 be53ddb1 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
1016 be53ddb1 2022-03-22 thomas fi
1017 be53ddb1 2022-03-22 thomas test_done $testroot $ret
1018 be53ddb1 2022-03-22 thomas }
1019 be53ddb1 2022-03-22 thomas
1020 be53ddb1 2022-03-22 thomas test_patch_prefer_new_path() {
1021 be53ddb1 2022-03-22 thomas local testroot=`test_init patch_orig`
1022 be53ddb1 2022-03-22 thomas
1023 be53ddb1 2022-03-22 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1024 be53ddb1 2022-03-22 thomas ret=$?
1025 be53ddb1 2022-03-22 thomas if [ $ret -ne 0 ]; then
1026 be53ddb1 2022-03-22 thomas test_done $testroot $ret
1027 be53ddb1 2022-03-22 thomas return 1
1028 be53ddb1 2022-03-22 thomas fi
1029 be53ddb1 2022-03-22 thomas
1030 be53ddb1 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
1031 be53ddb1 2022-03-22 thomas --- alpha.orig
1032 be53ddb1 2022-03-22 thomas +++ alpha
1033 be53ddb1 2022-03-22 thomas @@ -1 +1,2 @@
1034 be53ddb1 2022-03-22 thomas alpha
1035 be53ddb1 2022-03-22 thomas +was edited
1036 49114f01 2022-03-22 thomas EOF
1037 49114f01 2022-03-22 thomas
1038 be53ddb1 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
1039 be53ddb1 2022-03-22 thomas ret=$?
1040 be53ddb1 2022-03-22 thomas if [ $ret -ne 0 ]; then
1041 be53ddb1 2022-03-22 thomas test_done $testroot $ret
1042 be53ddb1 2022-03-22 thomas return 1
1043 be53ddb1 2022-03-22 thomas fi
1044 be53ddb1 2022-03-22 thomas
1045 e1c219c8 2022-04-22 thomas echo 'M alpha' > $testroot/stdout.expected
1046 49114f01 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1047 49114f01 2022-03-22 thomas ret=$?
1048 49114f01 2022-03-22 thomas if [ $ret -ne 0 ]; then
1049 49114f01 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
1050 49114f01 2022-03-22 thomas fi
1051 49114f01 2022-03-22 thomas test_done $testroot $ret
1052 49114f01 2022-03-22 thomas }
1053 49114f01 2022-03-22 thomas
1054 ff7f34d3 2022-03-22 thomas test_patch_no_newline() {
1055 ff7f34d3 2022-03-22 thomas local testroot=`test_init patch_no_newline`
1056 ff7f34d3 2022-03-22 thomas
1057 ff7f34d3 2022-03-22 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1058 ff7f34d3 2022-03-22 thomas ret=$?
1059 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1060 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1061 ff7f34d3 2022-03-22 thomas return 1
1062 ff7f34d3 2022-03-22 thomas fi
1063 ff7f34d3 2022-03-22 thomas
1064 ff7f34d3 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
1065 ff7f34d3 2022-03-22 thomas --- /dev/null
1066 ff7f34d3 2022-03-22 thomas +++ eta
1067 ff7f34d3 2022-03-22 thomas @@ -0,0 +1 @@
1068 ff7f34d3 2022-03-22 thomas +eta
1069 ff7f34d3 2022-03-22 thomas \ No newline at end of file
1070 ff7f34d3 2022-03-22 thomas EOF
1071 ff7f34d3 2022-03-22 thomas
1072 ff7f34d3 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
1073 ff7f34d3 2022-03-22 thomas ret=$?
1074 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1075 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1076 ff7f34d3 2022-03-22 thomas return 1
1077 ff7f34d3 2022-03-22 thomas fi
1078 ff7f34d3 2022-03-22 thomas
1079 ff7f34d3 2022-03-22 thomas echo "A eta" > $testroot/stdout.expected
1080 ff7f34d3 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1081 ff7f34d3 2022-03-22 thomas ret=$?
1082 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1083 ff7f34d3 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
1084 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1085 ff7f34d3 2022-03-22 thomas return 1
1086 ff7f34d3 2022-03-22 thomas fi
1087 ff7f34d3 2022-03-22 thomas
1088 ff7f34d3 2022-03-22 thomas echo -n eta > $testroot/wt/eta.expected
1089 ff7f34d3 2022-03-22 thomas cmp -s $testroot/wt/eta.expected $testroot/wt/eta
1090 ff7f34d3 2022-03-22 thomas ret=$?
1091 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1092 ff7f34d3 2022-03-22 thomas diff -u $testroot/wt/eta.expected $testroot/wt/eta
1093 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1094 ff7f34d3 2022-03-22 thomas return 1
1095 ff7f34d3 2022-03-22 thomas fi
1096 ff7f34d3 2022-03-22 thomas
1097 ff7f34d3 2022-03-22 thomas (cd $testroot/wt && got commit -m 'add eta') > /dev/null
1098 ff7f34d3 2022-03-22 thomas ret=$?
1099 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1100 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1101 ff7f34d3 2022-03-22 thomas return 1
1102 ff7f34d3 2022-03-22 thomas fi
1103 ff7f34d3 2022-03-22 thomas
1104 ff7f34d3 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
1105 ff7f34d3 2022-03-22 thomas --- eta
1106 ff7f34d3 2022-03-22 thomas +++ eta
1107 ff7f34d3 2022-03-22 thomas @@ -1 +1 @@
1108 ff7f34d3 2022-03-22 thomas -eta
1109 ff7f34d3 2022-03-22 thomas \ No newline at end of file
1110 ff7f34d3 2022-03-22 thomas +ETA
1111 ff7f34d3 2022-03-22 thomas \ No newline at end of file
1112 ff7f34d3 2022-03-22 thomas EOF
1113 ff7f34d3 2022-03-22 thomas
1114 ff7f34d3 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
1115 ff7f34d3 2022-03-22 thomas ret=$?
1116 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1117 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1118 ff7f34d3 2022-03-22 thomas return 1
1119 ff7f34d3 2022-03-22 thomas fi
1120 ff7f34d3 2022-03-22 thomas
1121 ff7f34d3 2022-03-22 thomas echo "M eta" > $testroot/stdout.expected
1122 ff7f34d3 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1123 ff7f34d3 2022-03-22 thomas ret=$?
1124 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1125 ff7f34d3 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
1126 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1127 ff7f34d3 2022-03-22 thomas return 1
1128 ff7f34d3 2022-03-22 thomas fi
1129 ff7f34d3 2022-03-22 thomas
1130 ff7f34d3 2022-03-22 thomas echo -n ETA > $testroot/wt/eta.expected
1131 ff7f34d3 2022-03-22 thomas cmp -s $testroot/wt/eta.expected $testroot/wt/eta
1132 ff7f34d3 2022-03-22 thomas ret=$?
1133 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1134 ff7f34d3 2022-03-22 thomas diff -u $testroot/wt/eta.expected $testroot/wt/eta
1135 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1136 ff7f34d3 2022-03-22 thomas return 1
1137 ff7f34d3 2022-03-22 thomas fi
1138 ff7f34d3 2022-03-22 thomas
1139 ff7f34d3 2022-03-22 thomas (cd $testroot/wt && got commit -m 'edit eta') > /dev/null
1140 ff7f34d3 2022-03-22 thomas ret=$?
1141 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1142 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1143 ff7f34d3 2022-03-22 thomas return 1
1144 ff7f34d3 2022-03-22 thomas fi
1145 ff7f34d3 2022-03-22 thomas
1146 ff7f34d3 2022-03-22 thomas cat <<EOF > $testroot/wt/patch
1147 ff7f34d3 2022-03-22 thomas --- eta
1148 ff7f34d3 2022-03-22 thomas +++ eta
1149 ff7f34d3 2022-03-22 thomas @@ -1 +1 @@
1150 ff7f34d3 2022-03-22 thomas -ETA
1151 ff7f34d3 2022-03-22 thomas \ No newline at end of file
1152 ff7f34d3 2022-03-22 thomas +eta
1153 ff7f34d3 2022-03-22 thomas EOF
1154 ff7f34d3 2022-03-22 thomas
1155 ff7f34d3 2022-03-22 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
1156 ff7f34d3 2022-03-22 thomas ret=$?
1157 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1158 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1159 ff7f34d3 2022-03-22 thomas return 1
1160 ff7f34d3 2022-03-22 thomas fi
1161 ff7f34d3 2022-03-22 thomas
1162 ff7f34d3 2022-03-22 thomas echo "M eta" > $testroot/stdout.expected
1163 ff7f34d3 2022-03-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1164 ff7f34d3 2022-03-22 thomas ret=$?
1165 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1166 ff7f34d3 2022-03-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
1167 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1168 ff7f34d3 2022-03-22 thomas return 1
1169 ff7f34d3 2022-03-22 thomas fi
1170 ff7f34d3 2022-03-22 thomas
1171 ff7f34d3 2022-03-22 thomas echo eta > $testroot/wt/eta.expected
1172 ff7f34d3 2022-03-22 thomas cmp -s $testroot/wt/eta.expected $testroot/wt/eta
1173 ff7f34d3 2022-03-22 thomas ret=$?
1174 ff7f34d3 2022-03-22 thomas if [ $ret -ne 0 ]; then
1175 ff7f34d3 2022-03-22 thomas diff -u $testroot/wt/eta.expected $testroot/wt/eta
1176 ff7f34d3 2022-03-22 thomas fi
1177 ff7f34d3 2022-03-22 thomas test_done $testroot $ret
1178 ff7f34d3 2022-03-22 thomas }
1179 ff7f34d3 2022-03-22 thomas
1180 d9db2ff9 2022-04-16 thomas test_patch_strip() {
1181 d9db2ff9 2022-04-16 thomas local testroot=`test_init patch_strip`
1182 d9db2ff9 2022-04-16 thomas
1183 d9db2ff9 2022-04-16 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1184 d9db2ff9 2022-04-16 thomas ret=$?
1185 d9db2ff9 2022-04-16 thomas if [ $ret -ne 0 ]; then
1186 d9db2ff9 2022-04-16 thomas test_done $testroot $ret
1187 d9db2ff9 2022-04-16 thomas return 1
1188 d9db2ff9 2022-04-16 thomas fi
1189 d9db2ff9 2022-04-16 thomas
1190 d9db2ff9 2022-04-16 thomas cat <<EOF > $testroot/wt/patch
1191 d9db2ff9 2022-04-16 thomas --- foo/bar/alpha.orig
1192 d9db2ff9 2022-04-16 thomas +++ foo/bar/alpha
1193 d9db2ff9 2022-04-16 thomas @@ -1 +1 @@
1194 d9db2ff9 2022-04-16 thomas -alpha
1195 d9db2ff9 2022-04-16 thomas +ALPHA
1196 d9db2ff9 2022-04-16 thomas EOF
1197 d9db2ff9 2022-04-16 thomas
1198 d9db2ff9 2022-04-16 thomas (cd $testroot/wt && got patch -p2 patch) > $testroot/stdout
1199 d9db2ff9 2022-04-16 thomas ret=$?
1200 d9db2ff9 2022-04-16 thomas if [ $ret -ne 0 ]; then
1201 d9db2ff9 2022-04-16 thomas test_done $testroot $ret
1202 d9db2ff9 2022-04-16 thomas return 1
1203 d9db2ff9 2022-04-16 thomas fi
1204 d9db2ff9 2022-04-16 thomas
1205 d9db2ff9 2022-04-16 thomas echo "M alpha" >> $testroot/stdout.expected
1206 d9db2ff9 2022-04-16 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1207 d9db2ff9 2022-04-16 thomas ret=$?
1208 d9db2ff9 2022-04-16 thomas if [ $ret -ne 0 ]; then
1209 d9db2ff9 2022-04-16 thomas diff -u $testroot/stdout.expected $testroot/stdout
1210 d9db2ff9 2022-04-16 thomas test_done $testroot $ret
1211 d9db2ff9 2022-04-16 thomas return 1
1212 d9db2ff9 2022-04-16 thomas fi
1213 d9db2ff9 2022-04-16 thomas
1214 d9db2ff9 2022-04-16 thomas (cd $testroot/wt && got revert alpha) > /dev/null 2>&1
1215 d9db2ff9 2022-04-16 thomas ret=$?
1216 d9db2ff9 2022-04-16 thomas if [ $ret -ne 0 ]; then
1217 d9db2ff9 2022-04-16 thomas test_done $testroot $ret
1218 d9db2ff9 2022-04-16 thomas return 1
1219 d9db2ff9 2022-04-16 thomas fi
1220 d9db2ff9 2022-04-16 thomas
1221 d9db2ff9 2022-04-16 thomas (cd $testroot/wt && got patch -p3 patch) \
1222 d9db2ff9 2022-04-16 thomas 2> $testroot/stderr
1223 d9db2ff9 2022-04-16 thomas ret=$?
1224 d9db2ff9 2022-04-16 thomas if [ $ret -eq 0 ]; then
1225 d9db2ff9 2022-04-16 thomas echo "stripped more components than available!"
1226 d9db2ff9 2022-04-16 thomas test_done $testroot 1
1227 d9db2ff9 2022-04-16 thomas return 1
1228 d9db2ff9 2022-04-16 thomas fi
1229 d9db2ff9 2022-04-16 thomas
1230 d9db2ff9 2022-04-16 thomas cat <<EOF > $testroot/stderr.expected
1231 d9db2ff9 2022-04-16 thomas got: can't strip 1 path-components from foo/bar/alpha: bad path
1232 d9db2ff9 2022-04-16 thomas EOF
1233 d9db2ff9 2022-04-16 thomas
1234 d9db2ff9 2022-04-16 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1235 d9db2ff9 2022-04-16 thomas ret=$?
1236 d9db2ff9 2022-04-16 thomas if [ $ret -ne 0 ]; then
1237 d9db2ff9 2022-04-16 thomas diff -u $testroot/stderr.expected $testroot/stderr
1238 d9db2ff9 2022-04-16 thomas fi
1239 d9db2ff9 2022-04-16 thomas test_done $testroot 0
1240 d9db2ff9 2022-04-16 thomas }
1241 72f46891 2022-04-23 thomas
1242 72f46891 2022-04-23 thomas test_patch_relative_paths() {
1243 9a49df74 2022-04-23 thomas local testroot=`test_init patch_relative_paths`
1244 72f46891 2022-04-23 thomas
1245 72f46891 2022-04-23 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1246 72f46891 2022-04-23 thomas ret=$?
1247 72f46891 2022-04-23 thomas if [ $ret -ne 0 ]; then
1248 72f46891 2022-04-23 thomas test_done $testroot $ret
1249 72f46891 2022-04-23 thomas return 1
1250 72f46891 2022-04-23 thomas fi
1251 d9db2ff9 2022-04-16 thomas
1252 72f46891 2022-04-23 thomas cat <<EOF > $testroot/wt/gamma/patch
1253 72f46891 2022-04-23 thomas --- delta
1254 72f46891 2022-04-23 thomas +++ delta
1255 72f46891 2022-04-23 thomas @@ -1 +1 @@
1256 72f46891 2022-04-23 thomas -delta
1257 72f46891 2022-04-23 thomas +DELTA
1258 72f46891 2022-04-23 thomas --- /dev/null
1259 72f46891 2022-04-23 thomas +++ eta
1260 72f46891 2022-04-23 thomas @@ -0,0 +1 @@
1261 72f46891 2022-04-23 thomas +eta
1262 72f46891 2022-04-23 thomas EOF
1263 72f46891 2022-04-23 thomas
1264 72f46891 2022-04-23 thomas (cd $testroot/wt/gamma && got patch patch) > $testroot/stdout
1265 72f46891 2022-04-23 thomas ret=$?
1266 72f46891 2022-04-23 thomas if [ $ret -ne 0 ]; then
1267 72f46891 2022-04-23 thomas test_done $testroot $ret
1268 72f46891 2022-04-23 thomas return 1
1269 72f46891 2022-04-23 thomas fi
1270 72f46891 2022-04-23 thomas
1271 72f46891 2022-04-23 thomas echo 'M gamma/delta' > $testroot/stdout.expected
1272 72f46891 2022-04-23 thomas echo 'A gamma/eta' >> $testroot/stdout.expected
1273 cfbf5531 2022-04-23 thomas
1274 cfbf5531 2022-04-23 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1275 cfbf5531 2022-04-23 thomas ret=$?
1276 cfbf5531 2022-04-23 thomas if [ $ret -ne 0 ]; then
1277 cfbf5531 2022-04-23 thomas diff -u $testroot/stdout.expected $testroot/stdout
1278 cfbf5531 2022-04-23 thomas fi
1279 cfbf5531 2022-04-23 thomas test_done $testroot $ret
1280 cfbf5531 2022-04-23 thomas }
1281 cfbf5531 2022-04-23 thomas
1282 cfbf5531 2022-04-23 thomas test_patch_with_path_prefix() {
1283 cfbf5531 2022-04-23 thomas local testroot=`test_init patch_with_path_prefix`
1284 cfbf5531 2022-04-23 thomas
1285 cfbf5531 2022-04-23 thomas got checkout -p gamma $testroot/repo $testroot/wt > /dev/null
1286 cfbf5531 2022-04-23 thomas ret=$?
1287 cfbf5531 2022-04-23 thomas if [ $ret -ne 0 ]; then
1288 cfbf5531 2022-04-23 thomas test_done $testroot $ret
1289 cfbf5531 2022-04-23 thomas return 1
1290 cfbf5531 2022-04-23 thomas fi
1291 cfbf5531 2022-04-23 thomas
1292 cfbf5531 2022-04-23 thomas cat <<EOF > $testroot/wt/patch
1293 cfbf5531 2022-04-23 thomas --- delta
1294 cfbf5531 2022-04-23 thomas +++ delta
1295 cfbf5531 2022-04-23 thomas @@ -1 +1 @@
1296 cfbf5531 2022-04-23 thomas -delta
1297 cfbf5531 2022-04-23 thomas +DELTA
1298 cfbf5531 2022-04-23 thomas --- /dev/null
1299 cfbf5531 2022-04-23 thomas +++ eta
1300 cfbf5531 2022-04-23 thomas @@ -0,0 +1 @@
1301 cfbf5531 2022-04-23 thomas +eta
1302 cfbf5531 2022-04-23 thomas EOF
1303 cfbf5531 2022-04-23 thomas
1304 cfbf5531 2022-04-23 thomas (cd $testroot/wt && got patch patch) > $testroot/stdout
1305 cfbf5531 2022-04-23 thomas ret=$?
1306 cfbf5531 2022-04-23 thomas if [ $ret -ne 0 ]; then
1307 cfbf5531 2022-04-23 thomas test_done $testroot $ret
1308 cfbf5531 2022-04-23 thomas return 1
1309 cfbf5531 2022-04-23 thomas fi
1310 cfbf5531 2022-04-23 thomas
1311 cfbf5531 2022-04-23 thomas echo 'M delta' > $testroot/stdout.expected
1312 cfbf5531 2022-04-23 thomas echo 'A eta' >> $testroot/stdout.expected
1313 cfbf5531 2022-04-23 thomas
1314 cfbf5531 2022-04-23 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1315 cfbf5531 2022-04-23 thomas ret=$?
1316 cfbf5531 2022-04-23 thomas if [ $ret -ne 0 ]; then
1317 cfbf5531 2022-04-23 thomas diff -u $testroot/stdout.expected $testroot/stdout
1318 cfbf5531 2022-04-23 thomas fi
1319 cfbf5531 2022-04-23 thomas test_done $testroot $ret
1320 cfbf5531 2022-04-23 thomas }
1321 72f46891 2022-04-23 thomas
1322 cfbf5531 2022-04-23 thomas test_patch_relpath_with_path_prefix() {
1323 cfbf5531 2022-04-23 thomas local testroot=`test_init patch_relpaths_with_path_prefix`
1324 cfbf5531 2022-04-23 thomas
1325 cfbf5531 2022-04-23 thomas got checkout -p gamma $testroot/repo $testroot/wt > /dev/null
1326 cfbf5531 2022-04-23 thomas ret=$?
1327 cfbf5531 2022-04-23 thomas if [ $ret -ne 0 ]; then
1328 cfbf5531 2022-04-23 thomas test_done $testroot $ret
1329 cfbf5531 2022-04-23 thomas return 1
1330 cfbf5531 2022-04-23 thomas fi
1331 cfbf5531 2022-04-23 thomas
1332 cfbf5531 2022-04-23 thomas mkdir -p $testroot/wt/epsilon/zeta/
1333 cfbf5531 2022-04-23 thomas
1334 cfbf5531 2022-04-23 thomas cat <<EOF > $testroot/wt/patch
1335 cfbf5531 2022-04-23 thomas --- /dev/null
1336 cfbf5531 2022-04-23 thomas +++ zeta/theta
1337 cfbf5531 2022-04-23 thomas @@ -0,0 +1 @@
1338 cfbf5531 2022-04-23 thomas +theta
1339 cfbf5531 2022-04-23 thomas EOF
1340 cfbf5531 2022-04-23 thomas
1341 cfbf5531 2022-04-23 thomas (cd $testroot/wt/epsilon/zeta && got patch -p1 $testroot/wt/patch) \
1342 cfbf5531 2022-04-23 thomas > $testroot/stdout
1343 cfbf5531 2022-04-23 thomas ret=$?
1344 cfbf5531 2022-04-23 thomas if [ $ret -ne 0 ]; then
1345 cfbf5531 2022-04-23 thomas test_done $testroot $ret
1346 cfbf5531 2022-04-23 thomas return 1
1347 cfbf5531 2022-04-23 thomas fi
1348 cfbf5531 2022-04-23 thomas
1349 cfbf5531 2022-04-23 thomas echo 'A epsilon/zeta/theta' >> $testroot/stdout.expected
1350 cfbf5531 2022-04-23 thomas
1351 72f46891 2022-04-23 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1352 72f46891 2022-04-23 thomas ret=$?
1353 72f46891 2022-04-23 thomas if [ $ret -ne 0 ]; then
1354 72f46891 2022-04-23 thomas diff -u $testroot/stdout.expected $testroot/stdout
1355 cfbf5531 2022-04-23 thomas test_done $testroot $ret
1356 cfbf5531 2022-04-23 thomas return 1
1357 72f46891 2022-04-23 thomas fi
1358 cfbf5531 2022-04-23 thomas
1359 cfbf5531 2022-04-23 thomas echo 'theta' > $testroot/theta.expected
1360 cfbf5531 2022-04-23 thomas cmp -s $testroot/wt/epsilon/zeta/theta $testroot/theta.expected
1361 cfbf5531 2022-04-23 thomas ret=$?
1362 cfbf5531 2022-04-23 thomas if [ $ret -ne 0 ]; then
1363 cfbf5531 2022-04-23 thomas diff -u $testroot/wt/epsilon/zeta/theta $testroot/theta.expected
1364 cfbf5531 2022-04-23 thomas fi
1365 72f46891 2022-04-23 thomas test_done $testroot $ret
1366 72f46891 2022-04-23 thomas }
1367 eaef698f 2022-04-23 thomas
1368 eaef698f 2022-04-23 thomas test_patch_reverse() {
1369 eaef698f 2022-04-23 thomas local testroot=`test_init patch_reverse`
1370 eaef698f 2022-04-23 thomas
1371 eaef698f 2022-04-23 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1372 eaef698f 2022-04-23 thomas ret=$?
1373 eaef698f 2022-04-23 thomas if [ $ret -ne 0 ]; then
1374 eaef698f 2022-04-23 thomas test_done $testroot $ret
1375 eaef698f 2022-04-23 thomas return 1
1376 eaef698f 2022-04-23 thomas fi
1377 eaef698f 2022-04-23 thomas
1378 eaef698f 2022-04-23 thomas cat <<EOF > $testroot/wt/patch
1379 eaef698f 2022-04-23 thomas --- alpha
1380 eaef698f 2022-04-23 thomas +++ alpha
1381 eaef698f 2022-04-23 thomas @@ -1 +1 @@
1382 eaef698f 2022-04-23 thomas -ALPHA
1383 eaef698f 2022-04-23 thomas \ No newline at end of file
1384 eaef698f 2022-04-23 thomas +alpha
1385 eaef698f 2022-04-23 thomas EOF
1386 72f46891 2022-04-23 thomas
1387 eaef698f 2022-04-23 thomas (cd $testroot/wt && got patch -R patch) > $testroot/stdout
1388 eaef698f 2022-04-23 thomas ret=$?
1389 eaef698f 2022-04-23 thomas if [ $ret -ne 0 ]; then
1390 eaef698f 2022-04-23 thomas test_done $testroot $ret
1391 eaef698f 2022-04-23 thomas return 1
1392 eaef698f 2022-04-23 thomas fi
1393 eaef698f 2022-04-23 thomas
1394 eaef698f 2022-04-23 thomas echo "M alpha" > $testroot/stdout.expected
1395 eaef698f 2022-04-23 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1396 eaef698f 2022-04-23 thomas ret=$?
1397 eaef698f 2022-04-23 thomas if [ $ret -ne 0 ]; then
1398 eaef698f 2022-04-23 thomas diff -u $testroot/stdout.expected $testroot/stdout
1399 eaef698f 2022-04-23 thomas test_done $testroot $ret
1400 eaef698f 2022-04-23 thomas return 1
1401 eaef698f 2022-04-23 thomas fi
1402 eaef698f 2022-04-23 thomas
1403 eaef698f 2022-04-23 thomas echo -n ALPHA > $testroot/wt/alpha.expected
1404 eaef698f 2022-04-23 thomas cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
1405 eaef698f 2022-04-23 thomas ret=$?
1406 eaef698f 2022-04-23 thomas if [ $ret -ne 0 ]; then
1407 eaef698f 2022-04-23 thomas diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
1408 eaef698f 2022-04-23 thomas fi
1409 eaef698f 2022-04-23 thomas test_done $testroot $ret
1410 eaef698f 2022-04-23 thomas }
1411 eaef698f 2022-04-23 thomas
1412 069bbb86 2022-03-07 thomas test_parseargs "$@"
1413 069bbb86 2022-03-07 thomas run_test test_patch_simple_add_file
1414 069bbb86 2022-03-07 thomas run_test test_patch_simple_rm_file
1415 069bbb86 2022-03-07 thomas run_test test_patch_simple_edit_file
1416 069bbb86 2022-03-07 thomas run_test test_patch_prepend_line
1417 069bbb86 2022-03-07 thomas run_test test_patch_replace_line
1418 069bbb86 2022-03-07 thomas run_test test_patch_multiple_hunks
1419 069bbb86 2022-03-07 thomas run_test test_patch_multiple_files
1420 069bbb86 2022-03-07 thomas run_test test_patch_dont_apply
1421 069bbb86 2022-03-07 thomas run_test test_patch_malformed
1422 069bbb86 2022-03-07 thomas run_test test_patch_no_patch
1423 069bbb86 2022-03-07 thomas run_test test_patch_equals_for_context
1424 bb2ad8ff 2022-03-13 thomas run_test test_patch_rename
1425 10e55613 2022-03-22 thomas run_test test_patch_illegal_status
1426 eaf99875 2022-03-22 thomas run_test test_patch_nop
1427 da09d8ed 2022-03-22 thomas run_test test_patch_preserve_perm
1428 e0c1f81c 2022-03-22 thomas run_test test_patch_create_dirs
1429 49114f01 2022-03-22 thomas run_test test_patch_with_offset
1430 be53ddb1 2022-03-22 thomas run_test test_patch_prefer_new_path
1431 ff7f34d3 2022-03-22 thomas run_test test_patch_no_newline
1432 d9db2ff9 2022-04-16 thomas run_test test_patch_strip
1433 72f46891 2022-04-23 thomas run_test test_patch_relative_paths
1434 cfbf5531 2022-04-23 thomas run_test test_patch_with_path_prefix
1435 cfbf5531 2022-04-23 thomas run_test test_patch_relpath_with_path_prefix
1436 eaef698f 2022-04-23 thomas run_test test_patch_reverse