Blame


1 35dc4510 2019-02-04 stsp #!/bin/sh
2 35dc4510 2019-02-04 stsp #
3 35dc4510 2019-02-04 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 35dc4510 2019-02-04 stsp #
5 35dc4510 2019-02-04 stsp # Permission to use, copy, modify, and distribute this software for any
6 35dc4510 2019-02-04 stsp # purpose with or without fee is hereby granted, provided that the above
7 35dc4510 2019-02-04 stsp # copyright notice and this permission notice appear in all copies.
8 35dc4510 2019-02-04 stsp #
9 35dc4510 2019-02-04 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 35dc4510 2019-02-04 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 35dc4510 2019-02-04 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 35dc4510 2019-02-04 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 35dc4510 2019-02-04 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 35dc4510 2019-02-04 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 35dc4510 2019-02-04 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 35dc4510 2019-02-04 stsp
17 35dc4510 2019-02-04 stsp . ./common.sh
18 35dc4510 2019-02-04 stsp
19 f6cae3ed 2020-09-13 naddy test_status_basic() {
20 35dc4510 2019-02-04 stsp local testroot=`test_init status_basic`
21 35dc4510 2019-02-04 stsp
22 35dc4510 2019-02-04 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 35dc4510 2019-02-04 stsp return 1
27 35dc4510 2019-02-04 stsp fi
28 35dc4510 2019-02-04 stsp
29 35dc4510 2019-02-04 stsp echo "modified alpha" > $testroot/wt/alpha
30 2ec1f75b 2019-03-26 stsp (cd $testroot/wt && got rm beta >/dev/null)
31 35dc4510 2019-02-04 stsp echo "unversioned file" > $testroot/wt/foo
32 35dc4510 2019-02-04 stsp rm $testroot/wt/epsilon/zeta
33 14e5d4dc 2019-02-05 stsp touch $testroot/wt/beta
34 d00136be 2019-03-26 stsp echo "new file" > $testroot/wt/new
35 d00136be 2019-03-26 stsp (cd $testroot/wt && got add new >/dev/null)
36 40b289d7 2019-09-07 stsp mkdir -m 0000 $testroot/wt/bar
37 35dc4510 2019-02-04 stsp
38 35dc4510 2019-02-04 stsp echo 'M alpha' > $testroot/stdout.expected
39 2ec1f75b 2019-03-26 stsp echo 'D beta' >> $testroot/stdout.expected
40 35dc4510 2019-02-04 stsp echo '! epsilon/zeta' >> $testroot/stdout.expected
41 35dc4510 2019-02-04 stsp echo '? foo' >> $testroot/stdout.expected
42 d00136be 2019-03-26 stsp echo 'A new' >> $testroot/stdout.expected
43 35dc4510 2019-02-04 stsp
44 35dc4510 2019-02-04 stsp (cd $testroot/wt && got status > $testroot/stdout)
45 35dc4510 2019-02-04 stsp
46 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
47 e60e7f5b 2019-02-10 stsp ret="$?"
48 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
49 35dc4510 2019-02-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
50 35dc4510 2019-02-04 stsp fi
51 40b289d7 2019-09-07 stsp chmod 700 $testroot/wt/bar
52 40b289d7 2019-09-07 stsp rmdir $testroot/wt/bar
53 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
54 35dc4510 2019-02-04 stsp }
55 35dc4510 2019-02-04 stsp
56 f6cae3ed 2020-09-13 naddy test_status_subdir_no_mods() {
57 f02ba292 2019-02-05 stsp local testroot=`test_init status_subdir_no_mods 1`
58 f02ba292 2019-02-05 stsp
59 f02ba292 2019-02-05 stsp mkdir $testroot/repo/Basic/
60 f02ba292 2019-02-05 stsp mkdir $testroot/repo/Basic/Targets/
61 f02ba292 2019-02-05 stsp touch $testroot/repo/Basic/Targets/AArch64.cpp
62 f02ba292 2019-02-05 stsp touch $testroot/repo/Basic/Targets.cpp
63 f02ba292 2019-02-05 stsp touch $testroot/repo/Basic/Targets.h
64 f02ba292 2019-02-05 stsp (cd $testroot/repo && git add .)
65 f02ba292 2019-02-05 stsp git_commit $testroot/repo -m "add subdir with files"
66 f02ba292 2019-02-05 stsp
67 f02ba292 2019-02-05 stsp got checkout $testroot/repo $testroot/wt > /dev/null
68 e60e7f5b 2019-02-10 stsp ret="$?"
69 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
70 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
71 f02ba292 2019-02-05 stsp return 1
72 f02ba292 2019-02-05 stsp fi
73 f02ba292 2019-02-05 stsp
74 f02ba292 2019-02-05 stsp touch $testroot/stdout.expected
75 f02ba292 2019-02-05 stsp
76 f02ba292 2019-02-05 stsp # This used to erroneously print:
77 f02ba292 2019-02-05 stsp #
78 f02ba292 2019-02-05 stsp # ! Basic/Targets.cpp
79 f02ba292 2019-02-05 stsp # ? Basic/Targets.cpp
80 f02ba292 2019-02-05 stsp (cd $testroot/wt && got status > $testroot/stdout)
81 f02ba292 2019-02-05 stsp
82 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
83 e60e7f5b 2019-02-10 stsp ret="$?"
84 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
85 f02ba292 2019-02-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
86 f02ba292 2019-02-05 stsp fi
87 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
88 f02ba292 2019-02-05 stsp }
89 f02ba292 2019-02-05 stsp
90 f6cae3ed 2020-09-13 naddy test_status_subdir_no_mods2() {
91 f02ba292 2019-02-05 stsp local testroot=`test_init status_subdir_no_mods2 1`
92 f02ba292 2019-02-05 stsp
93 f02ba292 2019-02-05 stsp mkdir $testroot/repo/AST
94 f02ba292 2019-02-05 stsp touch $testroot/repo/AST/APValue.cpp
95 f02ba292 2019-02-05 stsp mkdir $testroot/repo/ASTMatchers
96 f02ba292 2019-02-05 stsp touch $testroot/repo/ASTMatchers/ASTMatchFinder.cpp
97 f02ba292 2019-02-05 stsp mkdir $testroot/repo/Frontend
98 f02ba292 2019-02-05 stsp touch $testroot/repo/Frontend/ASTConsumers.cpp
99 f02ba292 2019-02-05 stsp mkdir $testroot/repo/Frontend/Rewrite
100 f02ba292 2019-02-05 stsp touch $testroot/repo/Frontend/Rewrite/CMakeLists.txt
101 f02ba292 2019-02-05 stsp mkdir $testroot/repo/FrontendTool
102 f02ba292 2019-02-05 stsp touch $testroot/repo/FrontendTool/CMakeLists.txt
103 f02ba292 2019-02-05 stsp touch $testroot/repo/FrontendTool/ExecuteCompilerInvocation.cpp
104 f02ba292 2019-02-05 stsp (cd $testroot/repo && git add .)
105 f02ba292 2019-02-05 stsp git_commit $testroot/repo -m "add subdir with files"
106 f02ba292 2019-02-05 stsp
107 f02ba292 2019-02-05 stsp got checkout $testroot/repo $testroot/wt > /dev/null
108 e60e7f5b 2019-02-10 stsp ret="$?"
109 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
110 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
111 f02ba292 2019-02-05 stsp return 1
112 f02ba292 2019-02-05 stsp fi
113 f02ba292 2019-02-05 stsp
114 f02ba292 2019-02-05 stsp touch $testroot/stdout.expected
115 f02ba292 2019-02-05 stsp
116 f02ba292 2019-02-05 stsp # This used to erroneously print:
117 f02ba292 2019-02-05 stsp #
118 f02ba292 2019-02-05 stsp # ! AST/APValue.cpp
119 f02ba292 2019-02-05 stsp # ? AST/APValue.cpp
120 f02ba292 2019-02-05 stsp # ! Frontend/ASTConsumers.cpp
121 f02ba292 2019-02-05 stsp # ! Frontend/Rewrite/CMakeLists.txt
122 f02ba292 2019-02-05 stsp # ? Frontend/ASTConsumers.cpp
123 f02ba292 2019-02-05 stsp # ? Frontend/Rewrite/CMakeLists.txt
124 f02ba292 2019-02-05 stsp (cd $testroot/wt && got status > $testroot/stdout)
125 f02ba292 2019-02-05 stsp
126 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
127 e60e7f5b 2019-02-10 stsp ret="$?"
128 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
129 f02ba292 2019-02-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
130 f02ba292 2019-02-05 stsp fi
131 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
132 f02ba292 2019-02-05 stsp }
133 f02ba292 2019-02-05 stsp
134 f6cae3ed 2020-09-13 naddy test_status_obstructed() {
135 0dbc2271 2019-02-05 stsp local testroot=`test_init status_obstructed`
136 0dbc2271 2019-02-05 stsp
137 0dbc2271 2019-02-05 stsp got checkout $testroot/repo $testroot/wt > /dev/null
138 e60e7f5b 2019-02-10 stsp ret="$?"
139 e60e7f5b 2019-02-10 stsp if [ "$ret" != "0" ]; then
140 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
141 0dbc2271 2019-02-05 stsp return 1
142 0dbc2271 2019-02-05 stsp fi
143 0dbc2271 2019-02-05 stsp
144 0dbc2271 2019-02-05 stsp rm $testroot/wt/epsilon/zeta
145 0dbc2271 2019-02-05 stsp mkdir $testroot/wt/epsilon/zeta
146 0dbc2271 2019-02-05 stsp
147 0dbc2271 2019-02-05 stsp echo '~ epsilon/zeta' > $testroot/stdout.expected
148 0dbc2271 2019-02-05 stsp
149 0dbc2271 2019-02-05 stsp (cd $testroot/wt && got status > $testroot/stdout)
150 0dbc2271 2019-02-05 stsp
151 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
152 e60e7f5b 2019-02-10 stsp ret="$?"
153 a062651c 2019-07-27 stsp if [ "$ret" != "0" ]; then
154 0dbc2271 2019-02-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
155 0dbc2271 2019-02-05 stsp fi
156 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
157 0dbc2271 2019-02-05 stsp }
158 0dbc2271 2019-02-05 stsp
159 f6cae3ed 2020-09-13 naddy test_status_shows_local_mods_after_update() {
160 02c07007 2019-02-10 stsp local testroot=`test_init status_shows_local_mods_after_update 1`
161 02c07007 2019-02-10 stsp
162 02c07007 2019-02-10 stsp echo "1" > $testroot/repo/numbers
163 02c07007 2019-02-10 stsp echo "2" >> $testroot/repo/numbers
164 02c07007 2019-02-10 stsp echo "3" >> $testroot/repo/numbers
165 02c07007 2019-02-10 stsp echo "4" >> $testroot/repo/numbers
166 02c07007 2019-02-10 stsp echo "5" >> $testroot/repo/numbers
167 02c07007 2019-02-10 stsp echo "6" >> $testroot/repo/numbers
168 02c07007 2019-02-10 stsp echo "7" >> $testroot/repo/numbers
169 02c07007 2019-02-10 stsp echo "8" >> $testroot/repo/numbers
170 02c07007 2019-02-10 stsp (cd $testroot/repo && git add numbers)
171 02c07007 2019-02-10 stsp git_commit $testroot/repo -m "added numbers file"
172 02c07007 2019-02-10 stsp
173 02c07007 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
174 02c07007 2019-02-10 stsp ret="$?"
175 02c07007 2019-02-10 stsp if [ "$ret" != "0" ]; then
176 02c07007 2019-02-10 stsp test_done "$testroot" "$ret"
177 02c07007 2019-02-10 stsp return 1
178 02c07007 2019-02-10 stsp fi
179 02c07007 2019-02-10 stsp
180 02c07007 2019-02-10 stsp sed -i 's/2/22/' $testroot/repo/numbers
181 02c07007 2019-02-10 stsp git_commit $testroot/repo -m "modified line 2"
182 02c07007 2019-02-10 stsp
183 02c07007 2019-02-10 stsp # modify line 7; both changes should merge cleanly
184 02c07007 2019-02-10 stsp sed -i 's/7/77/' $testroot/wt/numbers
185 02c07007 2019-02-10 stsp
186 02c07007 2019-02-10 stsp echo "G numbers" > $testroot/stdout.expected
187 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
188 02c07007 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
189 02c07007 2019-02-10 stsp echo >> $testroot/stdout.expected
190 02c07007 2019-02-10 stsp
191 02c07007 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
192 02c07007 2019-02-10 stsp
193 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
194 02c07007 2019-02-10 stsp ret="$?"
195 02c07007 2019-02-10 stsp if [ "$ret" != "0" ]; then
196 02c07007 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
197 02c07007 2019-02-10 stsp test_done "$testroot" "$ret"
198 02c07007 2019-02-10 stsp return 1
199 02c07007 2019-02-10 stsp fi
200 02c07007 2019-02-10 stsp
201 02c07007 2019-02-10 stsp echo 'M numbers' > $testroot/stdout.expected
202 02c07007 2019-02-10 stsp
203 02c07007 2019-02-10 stsp (cd $testroot/wt && got status > $testroot/stdout)
204 02c07007 2019-02-10 stsp
205 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
206 02c07007 2019-02-10 stsp ret="$?"
207 02c07007 2019-02-10 stsp if [ "$ret" != "0" ]; then
208 02c07007 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
209 02c07007 2019-02-10 stsp fi
210 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
211 02c07007 2019-02-10 stsp }
212 02c07007 2019-02-10 stsp
213 f6cae3ed 2020-09-13 naddy test_status_unversioned_subdirs() {
214 18831e78 2019-02-10 stsp local testroot=`test_init status_unversioned_subdirs 1`
215 18831e78 2019-02-10 stsp
216 18831e78 2019-02-10 stsp mkdir $testroot/repo/cdfs/
217 18831e78 2019-02-10 stsp touch $testroot/repo/cdfs/Makefile
218 18831e78 2019-02-10 stsp mkdir $testroot/repo/common/
219 18831e78 2019-02-10 stsp touch $testroot/repo/common/Makefile
220 18831e78 2019-02-10 stsp mkdir $testroot/repo/iso/
221 18831e78 2019-02-10 stsp touch $testroot/repo/iso/Makefile
222 18831e78 2019-02-10 stsp mkdir $testroot/repo/ramdisk/
223 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk/Makefile
224 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk/list.local
225 18831e78 2019-02-10 stsp mkdir $testroot/repo/ramdisk_cd/
226 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk_cd/Makefile
227 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk_cd/list.local
228 18831e78 2019-02-10 stsp (cd $testroot/repo && git add .)
229 18831e78 2019-02-10 stsp git_commit $testroot/repo -m "first commit"
230 18831e78 2019-02-10 stsp
231 18831e78 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
232 18831e78 2019-02-10 stsp ret="$?"
233 18831e78 2019-02-10 stsp if [ "$ret" != "0" ]; then
234 18831e78 2019-02-10 stsp test_done "$testroot" "$ret"
235 18831e78 2019-02-10 stsp return 1
236 18831e78 2019-02-10 stsp fi
237 18831e78 2019-02-10 stsp
238 18831e78 2019-02-10 stsp mkdir $testroot/wt/cdfs/obj
239 18831e78 2019-02-10 stsp mkdir $testroot/wt/ramdisk/obj
240 18831e78 2019-02-10 stsp mkdir $testroot/wt/ramdisk_cd/obj
241 18831e78 2019-02-10 stsp mkdir $testroot/wt/iso/obj
242 18831e78 2019-02-10 stsp
243 18831e78 2019-02-10 stsp echo -n > $testroot/stdout.expected
244 18831e78 2019-02-10 stsp
245 18831e78 2019-02-10 stsp # This used to erroneously print:
246 18831e78 2019-02-10 stsp #
247 18831e78 2019-02-10 stsp # ! ramdisk_cd/Makefile
248 18831e78 2019-02-10 stsp # ! ramdisk_cd/list.local
249 18831e78 2019-02-10 stsp # ? ramdisk_cd/Makefile
250 18831e78 2019-02-10 stsp # ? ramdisk_cd/list.local
251 18831e78 2019-02-10 stsp (cd $testroot/wt && got status > $testroot/stdout)
252 18831e78 2019-02-10 stsp
253 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
254 18831e78 2019-02-10 stsp ret="$?"
255 18831e78 2019-02-10 stsp if [ "$ret" != "0" ]; then
256 18831e78 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
257 18831e78 2019-02-10 stsp fi
258 18831e78 2019-02-10 stsp test_done "$testroot" "$ret"
259 18831e78 2019-02-10 stsp }
260 18831e78 2019-02-10 stsp
261 f6cae3ed 2020-09-13 naddy test_status_symlink() {
262 00bb5ea0 2020-07-23 stsp local testroot=`test_init status_symlink`
263 2c201a36 2019-02-10 stsp
264 2c201a36 2019-02-10 stsp mkdir $testroot/repo/ramdisk/
265 2c201a36 2019-02-10 stsp touch $testroot/repo/ramdisk/Makefile
266 d4ae64fa 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
267 d4ae64fa 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
268 d4ae64fa 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
269 2c201a36 2019-02-10 stsp (cd $testroot/repo && git add .)
270 2c201a36 2019-02-10 stsp git_commit $testroot/repo -m "first commit"
271 2c201a36 2019-02-10 stsp
272 2c201a36 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
273 2c201a36 2019-02-10 stsp ret="$?"
274 2c201a36 2019-02-10 stsp if [ "$ret" != "0" ]; then
275 2c201a36 2019-02-10 stsp test_done "$testroot" "$ret"
276 2c201a36 2019-02-10 stsp return 1
277 2c201a36 2019-02-10 stsp fi
278 2c201a36 2019-02-10 stsp
279 2c201a36 2019-02-10 stsp ln -s /usr/obj/distrib/i386/ramdisk $testroot/wt/ramdisk/obj
280 3cbbd752 2019-02-19 stsp
281 00bb5ea0 2020-07-23 stsp echo "? ramdisk/obj" > $testroot/stdout.expected
282 00bb5ea0 2020-07-23 stsp
283 00bb5ea0 2020-07-23 stsp (cd $testroot/wt && got status > $testroot/stdout)
284 00bb5ea0 2020-07-23 stsp
285 00bb5ea0 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
286 00bb5ea0 2020-07-23 stsp ret="$?"
287 00bb5ea0 2020-07-23 stsp if [ "$ret" != "0" ]; then
288 00bb5ea0 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
289 00bb5ea0 2020-07-23 stsp test_done "$testroot" "$ret"
290 00bb5ea0 2020-07-23 stsp return 1
291 00bb5ea0 2020-07-23 stsp fi
292 00bb5ea0 2020-07-23 stsp
293 d4ae64fa 2020-07-23 stsp (cd $testroot/wt && ln -sf beta alpha.link)
294 dd6165e4 2021-09-21 thomas.ad (cd $testroot/wt && ln -sfT gamma epsilon.link)
295 d4ae64fa 2020-07-23 stsp
296 00bb5ea0 2020-07-23 stsp (cd $testroot/wt && ln -s /etc/passwd passwd.link)
297 00bb5ea0 2020-07-23 stsp (cd $testroot/wt && ln -s ../beta epsilon/beta.link)
298 d4ae64fa 2020-07-23 stsp (cd $testroot/wt && got add passwd.link epsilon/beta.link > /dev/null)
299 00bb5ea0 2020-07-23 stsp
300 d4ae64fa 2020-07-23 stsp (cd $testroot/wt && got rm nonexistent.link > /dev/null)
301 d4ae64fa 2020-07-23 stsp
302 d4ae64fa 2020-07-23 stsp echo 'M alpha.link' > $testroot/stdout.expected
303 00bb5ea0 2020-07-23 stsp echo 'A epsilon/beta.link' >> $testroot/stdout.expected
304 d4ae64fa 2020-07-23 stsp echo 'M epsilon.link' >> $testroot/stdout.expected
305 d4ae64fa 2020-07-23 stsp echo 'D nonexistent.link' >> $testroot/stdout.expected
306 00bb5ea0 2020-07-23 stsp echo 'A passwd.link' >> $testroot/stdout.expected
307 00bb5ea0 2020-07-23 stsp echo "? ramdisk/obj" >> $testroot/stdout.expected
308 3cbbd752 2019-02-19 stsp
309 3cbbd752 2019-02-19 stsp (cd $testroot/wt && got status > $testroot/stdout)
310 3cbbd752 2019-02-19 stsp
311 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
312 3cbbd752 2019-02-19 stsp ret="$?"
313 3cbbd752 2019-02-19 stsp if [ "$ret" != "0" ]; then
314 3cbbd752 2019-02-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
315 3cbbd752 2019-02-19 stsp fi
316 3cbbd752 2019-02-19 stsp test_done "$testroot" "$ret"
317 3cbbd752 2019-02-19 stsp }
318 3cbbd752 2019-02-19 stsp
319 f6cae3ed 2020-09-13 naddy test_status_shows_no_mods_after_complete_merge() {
320 3cbbd752 2019-02-19 stsp local testroot=`test_init status_shows_no_mods_after_complete_merge 1`
321 3cbbd752 2019-02-19 stsp
322 3cbbd752 2019-02-19 stsp # make this file larger than the usual blob buffer size of 8192
323 3cbbd752 2019-02-19 stsp echo -n > $testroot/repo/numbers
324 3cbbd752 2019-02-19 stsp for i in `jot 16384`; do
325 3cbbd752 2019-02-19 stsp echo "$i" >> $testroot/repo/numbers
326 3cbbd752 2019-02-19 stsp done
327 3cbbd752 2019-02-19 stsp
328 3cbbd752 2019-02-19 stsp (cd $testroot/repo && git add numbers)
329 3cbbd752 2019-02-19 stsp git_commit $testroot/repo -m "added numbers file"
330 3cbbd752 2019-02-19 stsp
331 3cbbd752 2019-02-19 stsp got checkout $testroot/repo $testroot/wt > /dev/null
332 3cbbd752 2019-02-19 stsp ret="$?"
333 3cbbd752 2019-02-19 stsp if [ "$ret" != "0" ]; then
334 3cbbd752 2019-02-19 stsp test_done "$testroot" "$ret"
335 3cbbd752 2019-02-19 stsp return 1
336 3cbbd752 2019-02-19 stsp fi
337 2c201a36 2019-02-10 stsp
338 3cbbd752 2019-02-19 stsp sed -i 's/2/22/' $testroot/repo/numbers
339 3cbbd752 2019-02-19 stsp git_commit $testroot/repo -m "modified line 2"
340 3cbbd752 2019-02-19 stsp
341 3cbbd752 2019-02-19 stsp sleep 1
342 3cbbd752 2019-02-19 stsp # modify line 2 again; no local changes are left after merge
343 3cbbd752 2019-02-19 stsp sed -i 's/2/22/' $testroot/wt/numbers
344 3cbbd752 2019-02-19 stsp
345 3cbbd752 2019-02-19 stsp echo "G numbers" > $testroot/stdout.expected
346 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
347 3cbbd752 2019-02-19 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
348 3cbbd752 2019-02-19 stsp echo >> $testroot/stdout.expected
349 3cbbd752 2019-02-19 stsp
350 3cbbd752 2019-02-19 stsp (cd $testroot/wt && got update > $testroot/stdout)
351 3cbbd752 2019-02-19 stsp
352 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
353 3cbbd752 2019-02-19 stsp ret="$?"
354 3cbbd752 2019-02-19 stsp if [ "$ret" != "0" ]; then
355 3cbbd752 2019-02-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
356 3cbbd752 2019-02-19 stsp test_done "$testroot" "$ret"
357 3cbbd752 2019-02-19 stsp return 1
358 3cbbd752 2019-02-19 stsp fi
359 3cbbd752 2019-02-19 stsp
360 2c201a36 2019-02-10 stsp echo -n > $testroot/stdout.expected
361 2c201a36 2019-02-10 stsp
362 2c201a36 2019-02-10 stsp (cd $testroot/wt && got status > $testroot/stdout)
363 2c201a36 2019-02-10 stsp
364 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
365 2c201a36 2019-02-10 stsp ret="$?"
366 2c201a36 2019-02-10 stsp if [ "$ret" != "0" ]; then
367 2c201a36 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
368 2c201a36 2019-02-10 stsp fi
369 2c201a36 2019-02-10 stsp test_done "$testroot" "$ret"
370 2c201a36 2019-02-10 stsp }
371 7154f6ce 2019-03-27 stsp
372 f6cae3ed 2020-09-13 naddy test_status_shows_conflict() {
373 7154f6ce 2019-03-27 stsp local testroot=`test_init status_shows_conflict 1`
374 2c201a36 2019-02-10 stsp
375 7154f6ce 2019-03-27 stsp echo "1" > $testroot/repo/numbers
376 7154f6ce 2019-03-27 stsp echo "2" >> $testroot/repo/numbers
377 7154f6ce 2019-03-27 stsp echo "3" >> $testroot/repo/numbers
378 7154f6ce 2019-03-27 stsp echo "4" >> $testroot/repo/numbers
379 7154f6ce 2019-03-27 stsp echo "5" >> $testroot/repo/numbers
380 7154f6ce 2019-03-27 stsp echo "6" >> $testroot/repo/numbers
381 7154f6ce 2019-03-27 stsp echo "7" >> $testroot/repo/numbers
382 7154f6ce 2019-03-27 stsp echo "8" >> $testroot/repo/numbers
383 7154f6ce 2019-03-27 stsp (cd $testroot/repo && git add numbers)
384 7154f6ce 2019-03-27 stsp git_commit $testroot/repo -m "added numbers file"
385 7154f6ce 2019-03-27 stsp
386 7154f6ce 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
387 7154f6ce 2019-03-27 stsp ret="$?"
388 7154f6ce 2019-03-27 stsp if [ "$ret" != "0" ]; then
389 7154f6ce 2019-03-27 stsp test_done "$testroot" "$ret"
390 7154f6ce 2019-03-27 stsp return 1
391 7154f6ce 2019-03-27 stsp fi
392 7154f6ce 2019-03-27 stsp
393 7154f6ce 2019-03-27 stsp sed -i 's/2/22/' $testroot/repo/numbers
394 7154f6ce 2019-03-27 stsp git_commit $testroot/repo -m "modified line 2"
395 7154f6ce 2019-03-27 stsp
396 7154f6ce 2019-03-27 stsp # modify line 2 in a conflicting way
397 7154f6ce 2019-03-27 stsp sed -i 's/2/77/' $testroot/wt/numbers
398 7154f6ce 2019-03-27 stsp
399 7154f6ce 2019-03-27 stsp echo "C numbers" > $testroot/stdout.expected
400 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
401 7154f6ce 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
402 7154f6ce 2019-03-27 stsp echo >> $testroot/stdout.expected
403 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
404 7154f6ce 2019-03-27 stsp
405 7154f6ce 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
406 7154f6ce 2019-03-27 stsp
407 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
408 7154f6ce 2019-03-27 stsp ret="$?"
409 7154f6ce 2019-03-27 stsp if [ "$ret" != "0" ]; then
410 7154f6ce 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
411 7154f6ce 2019-03-27 stsp test_done "$testroot" "$ret"
412 7154f6ce 2019-03-27 stsp return 1
413 7154f6ce 2019-03-27 stsp fi
414 7154f6ce 2019-03-27 stsp
415 7154f6ce 2019-03-27 stsp echo 'C numbers' > $testroot/stdout.expected
416 7154f6ce 2019-03-27 stsp
417 7154f6ce 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
418 c577a9ce 2019-07-27 stsp
419 c577a9ce 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
420 c577a9ce 2019-07-27 stsp ret="$?"
421 c577a9ce 2019-07-27 stsp if [ "$ret" != "0" ]; then
422 c577a9ce 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
423 c577a9ce 2019-07-27 stsp fi
424 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
425 c577a9ce 2019-07-27 stsp }
426 c577a9ce 2019-07-27 stsp
427 f6cae3ed 2020-09-13 naddy test_status_empty_dir() {
428 c577a9ce 2019-07-27 stsp local testroot=`test_init status_empty_dir`
429 c577a9ce 2019-07-27 stsp
430 c577a9ce 2019-07-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
431 c577a9ce 2019-07-27 stsp ret="$?"
432 c577a9ce 2019-07-27 stsp if [ "$ret" != "0" ]; then
433 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
434 c577a9ce 2019-07-27 stsp return 1
435 c577a9ce 2019-07-27 stsp fi
436 c577a9ce 2019-07-27 stsp
437 c577a9ce 2019-07-27 stsp rm $testroot/wt/epsilon/zeta
438 c577a9ce 2019-07-27 stsp
439 c577a9ce 2019-07-27 stsp echo '! epsilon/zeta' > $testroot/stdout.expected
440 c577a9ce 2019-07-27 stsp
441 c577a9ce 2019-07-27 stsp (cd $testroot/wt && got status epsilon > $testroot/stdout)
442 c577a9ce 2019-07-27 stsp
443 c577a9ce 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
444 c577a9ce 2019-07-27 stsp ret="$?"
445 c577a9ce 2019-07-27 stsp if [ "$ret" != "0" ]; then
446 c577a9ce 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
447 c577a9ce 2019-07-27 stsp fi
448 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
449 c577a9ce 2019-07-27 stsp }
450 7154f6ce 2019-03-27 stsp
451 f6cae3ed 2020-09-13 naddy test_status_empty_dir_unversioned_file() {
452 c577a9ce 2019-07-27 stsp local testroot=`test_init status_empty_dir_unversioned_file`
453 c577a9ce 2019-07-27 stsp
454 c577a9ce 2019-07-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
455 c577a9ce 2019-07-27 stsp ret="$?"
456 c577a9ce 2019-07-27 stsp if [ "$ret" != "0" ]; then
457 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
458 c577a9ce 2019-07-27 stsp return 1
459 c577a9ce 2019-07-27 stsp fi
460 c577a9ce 2019-07-27 stsp
461 c577a9ce 2019-07-27 stsp rm $testroot/wt/epsilon/zeta
462 c577a9ce 2019-07-27 stsp touch $testroot/wt/epsilon/unversioned
463 c577a9ce 2019-07-27 stsp
464 c577a9ce 2019-07-27 stsp echo '? epsilon/unversioned' > $testroot/stdout.expected
465 c577a9ce 2019-07-27 stsp echo '! epsilon/zeta' >> $testroot/stdout.expected
466 c577a9ce 2019-07-27 stsp
467 c577a9ce 2019-07-27 stsp (cd $testroot/wt && got status epsilon > $testroot/stdout)
468 c577a9ce 2019-07-27 stsp
469 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
470 7154f6ce 2019-03-27 stsp ret="$?"
471 7154f6ce 2019-03-27 stsp if [ "$ret" != "0" ]; then
472 7154f6ce 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
473 7154f6ce 2019-03-27 stsp fi
474 7154f6ce 2019-03-27 stsp test_done "$testroot" "$ret"
475 7154f6ce 2019-03-27 stsp }
476 72ea6654 2019-07-27 stsp
477 f6cae3ed 2020-09-13 naddy test_status_many_paths() {
478 72ea6654 2019-07-27 stsp local testroot=`test_init status_many_paths`
479 7154f6ce 2019-03-27 stsp
480 72ea6654 2019-07-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
481 72ea6654 2019-07-27 stsp ret="$?"
482 72ea6654 2019-07-27 stsp if [ "$ret" != "0" ]; then
483 72ea6654 2019-07-27 stsp test_done "$testroot" "$ret"
484 72ea6654 2019-07-27 stsp return 1
485 72ea6654 2019-07-27 stsp fi
486 72ea6654 2019-07-27 stsp
487 72ea6654 2019-07-27 stsp echo "modified alpha" > $testroot/wt/alpha
488 72ea6654 2019-07-27 stsp (cd $testroot/wt && got rm beta >/dev/null)
489 72ea6654 2019-07-27 stsp echo "unversioned file" > $testroot/wt/foo
490 72ea6654 2019-07-27 stsp rm $testroot/wt/epsilon/zeta
491 72ea6654 2019-07-27 stsp touch $testroot/wt/beta
492 72ea6654 2019-07-27 stsp echo "new file" > $testroot/wt/new
493 72ea6654 2019-07-27 stsp mkdir $testroot/wt/newdir
494 72ea6654 2019-07-27 stsp (cd $testroot/wt && got add new >/dev/null)
495 72ea6654 2019-07-27 stsp
496 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status newdir > $testroot/stdout.expected)
497 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status alpha >> $testroot/stdout.expected)
498 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status epsilon >> $testroot/stdout.expected)
499 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status foo >> $testroot/stdout.expected)
500 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status new >> $testroot/stdout.expected)
501 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status beta >> $testroot/stdout.expected)
502 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status . >> $testroot/stdout.expected)
503 72ea6654 2019-07-27 stsp
504 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status newdir alpha epsilon foo new beta . \
505 72ea6654 2019-07-27 stsp > $testroot/stdout)
506 6841da00 2019-08-08 stsp
507 6841da00 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
508 6841da00 2019-08-08 stsp ret="$?"
509 6841da00 2019-08-08 stsp if [ "$ret" != "0" ]; then
510 6841da00 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
511 6841da00 2019-08-08 stsp fi
512 6841da00 2019-08-08 stsp test_done "$testroot" "$ret"
513 6841da00 2019-08-08 stsp }
514 6841da00 2019-08-08 stsp
515 f6cae3ed 2020-09-13 naddy test_status_cvsignore() {
516 6841da00 2019-08-08 stsp local testroot=`test_init status_cvsignore`
517 6841da00 2019-08-08 stsp
518 6841da00 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
519 6841da00 2019-08-08 stsp ret="$?"
520 6841da00 2019-08-08 stsp if [ "$ret" != "0" ]; then
521 6841da00 2019-08-08 stsp test_done "$testroot" "$ret"
522 6841da00 2019-08-08 stsp return 1
523 6841da00 2019-08-08 stsp fi
524 72ea6654 2019-07-27 stsp
525 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/foo
526 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/foop
527 3143d852 2020-06-25 stsp echo "unversioned file" > $testroot/wt/epsilon/foo
528 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/epsilon/bar
529 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/epsilon/boo
530 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/epsilon/moo
531 3143d852 2020-06-25 stsp mkdir -p $testroot/wt/epsilon/new/
532 3143d852 2020-06-25 stsp echo "unversioned file" > $testroot/wt/epsilon/new/foo
533 3143d852 2020-06-25 stsp echo "**/foo" > $testroot/wt/.cvsignore
534 6841da00 2019-08-08 stsp echo "bar" > $testroot/wt/epsilon/.cvsignore
535 6841da00 2019-08-08 stsp echo "moo" >> $testroot/wt/epsilon/.cvsignore
536 6841da00 2019-08-08 stsp
537 6841da00 2019-08-08 stsp echo '? .cvsignore' > $testroot/stdout.expected
538 6841da00 2019-08-08 stsp echo '? epsilon/.cvsignore' >> $testroot/stdout.expected
539 6841da00 2019-08-08 stsp echo '? epsilon/boo' >> $testroot/stdout.expected
540 6841da00 2019-08-08 stsp echo '? foop' >> $testroot/stdout.expected
541 6841da00 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
542 3143d852 2020-06-25 stsp
543 3143d852 2020-06-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
544 3143d852 2020-06-25 stsp ret="$?"
545 3143d852 2020-06-25 stsp if [ "$ret" != "0" ]; then
546 3143d852 2020-06-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
547 3143d852 2020-06-25 stsp test_done "$testroot" "$ret"
548 3143d852 2020-06-25 stsp return 1
549 3143d852 2020-06-25 stsp fi
550 3143d852 2020-06-25 stsp
551 3143d852 2020-06-25 stsp echo '? epsilon/.cvsignore' > $testroot/stdout.expected
552 3143d852 2020-06-25 stsp echo '? epsilon/boo' >> $testroot/stdout.expected
553 3143d852 2020-06-25 stsp (cd $testroot/wt && got status epsilon > $testroot/stdout)
554 b80270a7 2019-08-08 stsp
555 b80270a7 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
556 b80270a7 2019-08-08 stsp ret="$?"
557 b80270a7 2019-08-08 stsp if [ "$ret" != "0" ]; then
558 b80270a7 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
559 b80270a7 2019-08-08 stsp test_done "$testroot" "$ret"
560 b80270a7 2019-08-08 stsp return 1
561 b80270a7 2019-08-08 stsp fi
562 3143d852 2020-06-25 stsp
563 3143d852 2020-06-25 stsp echo -n '' > $testroot/stdout.expected
564 3143d852 2020-06-25 stsp (cd $testroot/wt && got status epsilon/new > $testroot/stdout)
565 6841da00 2019-08-08 stsp
566 3143d852 2020-06-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
567 3143d852 2020-06-25 stsp ret="$?"
568 3143d852 2020-06-25 stsp if [ "$ret" != "0" ]; then
569 3143d852 2020-06-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
570 3143d852 2020-06-25 stsp test_done "$testroot" "$ret"
571 3143d852 2020-06-25 stsp return 1
572 3143d852 2020-06-25 stsp fi
573 3143d852 2020-06-25 stsp
574 b80270a7 2019-08-08 stsp echo '? .cvsignore' > $testroot/stdout.expected
575 b80270a7 2019-08-08 stsp echo '? epsilon/.cvsignore' >> $testroot/stdout.expected
576 b80270a7 2019-08-08 stsp echo '? epsilon/boo' >> $testroot/stdout.expected
577 bd8de430 2019-10-04 stsp echo '? foop' >> $testroot/stdout.expected
578 bd8de430 2019-10-04 stsp (cd $testroot/wt/gamma && got status > $testroot/stdout)
579 f6343036 2021-06-22 stsp
580 f6343036 2021-06-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
581 f6343036 2021-06-22 stsp ret="$?"
582 f6343036 2021-06-22 stsp if [ "$ret" != "0" ]; then
583 f6343036 2021-06-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
584 f6343036 2021-06-22 stsp test_done "$testroot" "$ret"
585 f6343036 2021-06-22 stsp return 1
586 f6343036 2021-06-22 stsp fi
587 f6343036 2021-06-22 stsp
588 f6343036 2021-06-22 stsp cat > $testroot/stdout.expected <<EOF
589 f6343036 2021-06-22 stsp ? .cvsignore
590 f6343036 2021-06-22 stsp ? epsilon/.cvsignore
591 f6343036 2021-06-22 stsp ? epsilon/bar
592 f6343036 2021-06-22 stsp ? epsilon/boo
593 f6343036 2021-06-22 stsp ? epsilon/foo
594 f6343036 2021-06-22 stsp ? epsilon/moo
595 f6343036 2021-06-22 stsp ? epsilon/new/foo
596 f6343036 2021-06-22 stsp ? foo
597 f6343036 2021-06-22 stsp ? foop
598 f6343036 2021-06-22 stsp EOF
599 f6343036 2021-06-22 stsp (cd $testroot/wt && got status -I > $testroot/stdout)
600 f6343036 2021-06-22 stsp ret="$?"
601 f6343036 2021-06-22 stsp if [ "$ret" != "0" ]; then
602 f6343036 2021-06-22 stsp echo "got status failed unexpectedly" >&2
603 f6343036 2021-06-22 stsp test_done "$testroot" "1"
604 f6343036 2021-06-22 stsp return 1
605 f6343036 2021-06-22 stsp fi
606 bd8de430 2019-10-04 stsp
607 bd8de430 2019-10-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
608 bd8de430 2019-10-04 stsp ret="$?"
609 bd8de430 2019-10-04 stsp if [ "$ret" != "0" ]; then
610 bd8de430 2019-10-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
611 bd8de430 2019-10-04 stsp fi
612 bd8de430 2019-10-04 stsp test_done "$testroot" "$ret"
613 bd8de430 2019-10-04 stsp }
614 bd8de430 2019-10-04 stsp
615 f6cae3ed 2020-09-13 naddy test_status_gitignore() {
616 bd8de430 2019-10-04 stsp local testroot=`test_init status_gitignore`
617 bd8de430 2019-10-04 stsp
618 bd8de430 2019-10-04 stsp got checkout $testroot/repo $testroot/wt > /dev/null
619 bd8de430 2019-10-04 stsp ret="$?"
620 bd8de430 2019-10-04 stsp if [ "$ret" != "0" ]; then
621 bd8de430 2019-10-04 stsp test_done "$testroot" "$ret"
622 bd8de430 2019-10-04 stsp return 1
623 bd8de430 2019-10-04 stsp fi
624 bd8de430 2019-10-04 stsp
625 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/foo
626 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/foop
627 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/barp
628 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/epsilon/bar
629 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/epsilon/boo
630 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/epsilon/moo
631 bd8de430 2019-10-04 stsp mkdir -p $testroot/wt/a/b/c/
632 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/a/b/c/foo
633 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/a/b/c/zoo
634 bd8de430 2019-10-04 stsp echo "foo" > $testroot/wt/.gitignore
635 bd8de430 2019-10-04 stsp echo "bar*" >> $testroot/wt/.gitignore
636 bd8de430 2019-10-04 stsp echo "epsilon/**" >> $testroot/wt/.gitignore
637 bd8de430 2019-10-04 stsp echo "a/**/foo" >> $testroot/wt/.gitignore
638 bd8de430 2019-10-04 stsp echo "**/zoo" >> $testroot/wt/.gitignore
639 bd8de430 2019-10-04 stsp
640 bd8de430 2019-10-04 stsp echo '? .gitignore' > $testroot/stdout.expected
641 b80270a7 2019-08-08 stsp echo '? foop' >> $testroot/stdout.expected
642 bd8de430 2019-10-04 stsp (cd $testroot/wt && got status > $testroot/stdout)
643 bd8de430 2019-10-04 stsp
644 bd8de430 2019-10-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
645 bd8de430 2019-10-04 stsp ret="$?"
646 bd8de430 2019-10-04 stsp if [ "$ret" != "0" ]; then
647 bd8de430 2019-10-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
648 bd8de430 2019-10-04 stsp test_done "$testroot" "$ret"
649 bd8de430 2019-10-04 stsp return 1
650 bd8de430 2019-10-04 stsp fi
651 bd8de430 2019-10-04 stsp
652 bd8de430 2019-10-04 stsp echo '? .gitignore' > $testroot/stdout.expected
653 bd8de430 2019-10-04 stsp echo '? foop' >> $testroot/stdout.expected
654 b80270a7 2019-08-08 stsp (cd $testroot/wt/gamma && got status > $testroot/stdout)
655 b80270a7 2019-08-08 stsp
656 72ea6654 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
657 72ea6654 2019-07-27 stsp ret="$?"
658 72ea6654 2019-07-27 stsp if [ "$ret" != "0" ]; then
659 72ea6654 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
660 f6343036 2021-06-22 stsp test_done "$testroot" "$ret"
661 f6343036 2021-06-22 stsp return 1
662 72ea6654 2019-07-27 stsp fi
663 f6343036 2021-06-22 stsp
664 f6343036 2021-06-22 stsp cat > $testroot/stdout.expected <<EOF
665 f6343036 2021-06-22 stsp ? .gitignore
666 f6343036 2021-06-22 stsp ? a/b/c/foo
667 f6343036 2021-06-22 stsp ? a/b/c/zoo
668 f6343036 2021-06-22 stsp ? barp
669 f6343036 2021-06-22 stsp ? epsilon/bar
670 f6343036 2021-06-22 stsp ? epsilon/boo
671 f6343036 2021-06-22 stsp ? epsilon/moo
672 f6343036 2021-06-22 stsp ? foo
673 f6343036 2021-06-22 stsp ? foop
674 f6343036 2021-06-22 stsp EOF
675 f6343036 2021-06-22 stsp (cd $testroot/wt && got status -I > $testroot/stdout)
676 f6343036 2021-06-22 stsp ret="$?"
677 f6343036 2021-06-22 stsp if [ "$ret" != "0" ]; then
678 f6343036 2021-06-22 stsp echo "got status failed unexpectedly" >&2
679 f6343036 2021-06-22 stsp test_done "$testroot" "1"
680 f6343036 2021-06-22 stsp return 1
681 f6343036 2021-06-22 stsp fi
682 f6343036 2021-06-22 stsp
683 f6343036 2021-06-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
684 f6343036 2021-06-22 stsp ret="$?"
685 f6343036 2021-06-22 stsp if [ "$ret" != "0" ]; then
686 f6343036 2021-06-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
687 f6343036 2021-06-22 stsp fi
688 72ea6654 2019-07-27 stsp test_done "$testroot" "$ret"
689 72ea6654 2019-07-27 stsp }
690 081470ac 2020-08-13 stsp
691 f6cae3ed 2020-09-13 naddy test_status_status_code() {
692 081470ac 2020-08-13 stsp local testroot=`test_init status_status_code`
693 081470ac 2020-08-13 stsp
694 081470ac 2020-08-13 stsp got checkout $testroot/repo $testroot/wt > /dev/null
695 081470ac 2020-08-13 stsp ret="$?"
696 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
697 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
698 081470ac 2020-08-13 stsp return 1
699 081470ac 2020-08-13 stsp fi
700 081470ac 2020-08-13 stsp
701 081470ac 2020-08-13 stsp echo "modified alpha" > $testroot/wt/alpha
702 081470ac 2020-08-13 stsp (cd $testroot/wt && got rm beta >/dev/null)
703 081470ac 2020-08-13 stsp echo "unversioned file" > $testroot/wt/foo
704 081470ac 2020-08-13 stsp rm $testroot/wt/epsilon/zeta
705 081470ac 2020-08-13 stsp touch $testroot/wt/beta
706 081470ac 2020-08-13 stsp echo "new file" > $testroot/wt/new
707 081470ac 2020-08-13 stsp (cd $testroot/wt && got add new >/dev/null)
708 081470ac 2020-08-13 stsp
709 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s xDM \
710 081470ac 2020-08-13 stsp > $testroot/stdout 2> $testroot/stderr)
711 081470ac 2020-08-13 stsp ret="$?"
712 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
713 081470ac 2020-08-13 stsp echo "status succeeded unexpectedly" >&2
714 081470ac 2020-08-13 stsp test_done "$testroot" "1"
715 081470ac 2020-08-13 stsp return 1
716 081470ac 2020-08-13 stsp fi
717 081470ac 2020-08-13 stsp
718 081470ac 2020-08-13 stsp echo "got: invalid status code 'x'" > $testroot/stderr.expected
719 081470ac 2020-08-13 stsp cmp -s $testroot/stderr.expected $testroot/stderr
720 081470ac 2020-08-13 stsp ret="$?"
721 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
722 081470ac 2020-08-13 stsp diff -u $testroot/stderr.expected $testroot/stderr
723 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
724 081470ac 2020-08-13 stsp return 1
725 081470ac 2020-08-13 stsp fi
726 72ea6654 2019-07-27 stsp
727 081470ac 2020-08-13 stsp echo 'M alpha' > $testroot/stdout.expected
728 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s M > $testroot/stdout)
729 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
730 081470ac 2020-08-13 stsp ret="$?"
731 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
732 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
733 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
734 081470ac 2020-08-13 stsp return 1
735 081470ac 2020-08-13 stsp fi
736 081470ac 2020-08-13 stsp
737 081470ac 2020-08-13 stsp echo 'D beta' > $testroot/stdout.expected
738 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s D > $testroot/stdout)
739 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
740 081470ac 2020-08-13 stsp ret="$?"
741 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
742 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
743 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
744 081470ac 2020-08-13 stsp return 1
745 081470ac 2020-08-13 stsp fi
746 081470ac 2020-08-13 stsp
747 081470ac 2020-08-13 stsp echo '! epsilon/zeta' > $testroot/stdout.expected
748 081470ac 2020-08-13 stsp echo '? foo' >> $testroot/stdout.expected
749 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -s !\? > $testroot/stdout)
750 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
751 081470ac 2020-08-13 stsp ret="$?"
752 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
753 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
754 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
755 081470ac 2020-08-13 stsp return 1
756 081470ac 2020-08-13 stsp fi
757 081470ac 2020-08-13 stsp
758 081470ac 2020-08-13 stsp echo 'A new' > $testroot/stdout.expected
759 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s A > $testroot/stdout)
760 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
761 081470ac 2020-08-13 stsp ret="$?"
762 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
763 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
764 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
765 081470ac 2020-08-13 stsp return 1
766 081470ac 2020-08-13 stsp fi
767 081470ac 2020-08-13 stsp
768 081470ac 2020-08-13 stsp (cd $testroot/wt && got stage new > $testroot/stdout)
769 081470ac 2020-08-13 stsp
770 081470ac 2020-08-13 stsp echo ' A new' > $testroot/stdout.expected
771 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s A > $testroot/stdout)
772 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
773 081470ac 2020-08-13 stsp ret="$?"
774 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
775 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
776 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
777 081470ac 2020-08-13 stsp return 1
778 081470ac 2020-08-13 stsp fi
779 081470ac 2020-08-13 stsp
780 081470ac 2020-08-13 stsp echo 'changed file new' > $testroot/wt/new
781 081470ac 2020-08-13 stsp
782 081470ac 2020-08-13 stsp echo 'MA new' > $testroot/stdout.expected
783 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s A > $testroot/stdout)
784 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
785 081470ac 2020-08-13 stsp ret="$?"
786 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
787 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
788 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
789 081470ac 2020-08-13 stsp return 1
790 081470ac 2020-08-13 stsp fi
791 081470ac 2020-08-13 stsp
792 081470ac 2020-08-13 stsp echo 'M alpha' > $testroot/stdout.expected
793 081470ac 2020-08-13 stsp echo 'MA new' >> $testroot/stdout.expected
794 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s M > $testroot/stdout)
795 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
796 67c65ed7 2021-09-14 tracey ret="$?"
797 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
798 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
799 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
800 67c65ed7 2021-09-14 tracey return 1
801 67c65ed7 2021-09-14 tracey fi
802 67c65ed7 2021-09-14 tracey
803 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
804 67c65ed7 2021-09-14 tracey }
805 67c65ed7 2021-09-14 tracey
806 67c65ed7 2021-09-14 tracey test_status_suppress() {
807 67c65ed7 2021-09-14 tracey local testroot=`test_init status_suppress`
808 67c65ed7 2021-09-14 tracey
809 67c65ed7 2021-09-14 tracey got checkout $testroot/repo $testroot/wt > /dev/null
810 67c65ed7 2021-09-14 tracey ret="$?"
811 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
812 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
813 67c65ed7 2021-09-14 tracey return 1
814 67c65ed7 2021-09-14 tracey fi
815 67c65ed7 2021-09-14 tracey
816 67c65ed7 2021-09-14 tracey echo "modified alpha" > $testroot/wt/alpha
817 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got rm beta >/dev/null)
818 67c65ed7 2021-09-14 tracey echo "unversioned file" > $testroot/wt/foo
819 67c65ed7 2021-09-14 tracey rm $testroot/wt/epsilon/zeta
820 67c65ed7 2021-09-14 tracey touch $testroot/wt/beta
821 67c65ed7 2021-09-14 tracey echo "new file" > $testroot/wt/new
822 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got add new >/dev/null)
823 e3a46353 2021-09-14 stsp
824 e3a46353 2021-09-14 stsp (cd $testroot/wt && got status -S A -s M \
825 e3a46353 2021-09-14 stsp > $testroot/stdout 2> $testroot/stderr)
826 e3a46353 2021-09-14 stsp ret="$?"
827 e3a46353 2021-09-14 stsp if [ "$ret" = "0" ]; then
828 e3a46353 2021-09-14 stsp echo "status succeeded unexpectedly" >&2
829 e3a46353 2021-09-14 stsp test_done "$testroot" "1"
830 e3a46353 2021-09-14 stsp return 1
831 e3a46353 2021-09-14 stsp fi
832 e3a46353 2021-09-14 stsp
833 e3a46353 2021-09-14 stsp echo "got: -s and -S options are mutually exclusive" \
834 e3a46353 2021-09-14 stsp > $testroot/stderr.expected
835 e3a46353 2021-09-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
836 e3a46353 2021-09-14 stsp ret="$?"
837 e3a46353 2021-09-14 stsp if [ "$ret" != "0" ]; then
838 e3a46353 2021-09-14 stsp diff -u $testroot/stderr.expected $testroot/stderr
839 e3a46353 2021-09-14 stsp test_done "$testroot" "$ret"
840 e3a46353 2021-09-14 stsp return 1
841 e3a46353 2021-09-14 stsp fi
842 e3a46353 2021-09-14 stsp
843 e3a46353 2021-09-14 stsp (cd $testroot/wt && got status -s A -S M \
844 e3a46353 2021-09-14 stsp > $testroot/stdout 2> $testroot/stderr)
845 e3a46353 2021-09-14 stsp ret="$?"
846 e3a46353 2021-09-14 stsp if [ "$ret" = "0" ]; then
847 e3a46353 2021-09-14 stsp echo "status succeeded unexpectedly" >&2
848 e3a46353 2021-09-14 stsp test_done "$testroot" "1"
849 e3a46353 2021-09-14 stsp return 1
850 e3a46353 2021-09-14 stsp fi
851 67c65ed7 2021-09-14 tracey
852 e3a46353 2021-09-14 stsp echo "got: -S and -s options are mutually exclusive" \
853 e3a46353 2021-09-14 stsp > $testroot/stderr.expected
854 e3a46353 2021-09-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
855 e3a46353 2021-09-14 stsp ret="$?"
856 e3a46353 2021-09-14 stsp if [ "$ret" != "0" ]; then
857 e3a46353 2021-09-14 stsp diff -u $testroot/stderr.expected $testroot/stderr
858 e3a46353 2021-09-14 stsp test_done "$testroot" "$ret"
859 e3a46353 2021-09-14 stsp return 1
860 e3a46353 2021-09-14 stsp fi
861 e3a46353 2021-09-14 stsp
862 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got status -S xDM \
863 67c65ed7 2021-09-14 tracey > $testroot/stdout 2> $testroot/stderr)
864 67c65ed7 2021-09-14 tracey ret="$?"
865 67c65ed7 2021-09-14 tracey if [ "$ret" = "0" ]; then
866 67c65ed7 2021-09-14 tracey echo "status succeeded unexpectedly" >&2
867 67c65ed7 2021-09-14 tracey test_done "$testroot" "1"
868 67c65ed7 2021-09-14 tracey return 1
869 67c65ed7 2021-09-14 tracey fi
870 67c65ed7 2021-09-14 tracey
871 67c65ed7 2021-09-14 tracey echo "got: invalid status code 'x'" > $testroot/stderr.expected
872 67c65ed7 2021-09-14 tracey cmp -s $testroot/stderr.expected $testroot/stderr
873 67c65ed7 2021-09-14 tracey ret="$?"
874 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
875 67c65ed7 2021-09-14 tracey diff -u $testroot/stderr.expected $testroot/stderr
876 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
877 67c65ed7 2021-09-14 tracey return 1
878 67c65ed7 2021-09-14 tracey fi
879 67c65ed7 2021-09-14 tracey
880 67c65ed7 2021-09-14 tracey echo 'M alpha' > $testroot/stdout.expected
881 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S D\?A! > $testroot/stdout)
882 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
883 67c65ed7 2021-09-14 tracey ret="$?"
884 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
885 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
886 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
887 67c65ed7 2021-09-14 tracey return 1
888 67c65ed7 2021-09-14 tracey fi
889 67c65ed7 2021-09-14 tracey
890 67c65ed7 2021-09-14 tracey echo 'D beta' > $testroot/stdout.expected
891 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S M\?A! > $testroot/stdout)
892 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
893 67c65ed7 2021-09-14 tracey ret="$?"
894 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
895 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
896 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
897 67c65ed7 2021-09-14 tracey return 1
898 67c65ed7 2021-09-14 tracey fi
899 67c65ed7 2021-09-14 tracey
900 67c65ed7 2021-09-14 tracey echo '! epsilon/zeta' > $testroot/stdout.expected
901 67c65ed7 2021-09-14 tracey echo '? foo' >> $testroot/stdout.expected
902 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got status -S MDA > $testroot/stdout)
903 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
904 081470ac 2020-08-13 stsp ret="$?"
905 081470ac 2020-08-13 stsp if [ "$ret" != "0" ]; then
906 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
907 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
908 081470ac 2020-08-13 stsp return 1
909 081470ac 2020-08-13 stsp fi
910 081470ac 2020-08-13 stsp
911 67c65ed7 2021-09-14 tracey echo 'A new' > $testroot/stdout.expected
912 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S MD\?! > $testroot/stdout)
913 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
914 67c65ed7 2021-09-14 tracey ret="$?"
915 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
916 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
917 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
918 67c65ed7 2021-09-14 tracey return 1
919 67c65ed7 2021-09-14 tracey fi
920 67c65ed7 2021-09-14 tracey
921 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got stage new > $testroot/stdout)
922 67c65ed7 2021-09-14 tracey
923 67c65ed7 2021-09-14 tracey echo ' A new' > $testroot/stdout.expected
924 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S MD\?! > $testroot/stdout)
925 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
926 67c65ed7 2021-09-14 tracey ret="$?"
927 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
928 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
929 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
930 67c65ed7 2021-09-14 tracey return 1
931 67c65ed7 2021-09-14 tracey fi
932 67c65ed7 2021-09-14 tracey
933 67c65ed7 2021-09-14 tracey echo 'changed file new' > $testroot/wt/new
934 67c65ed7 2021-09-14 tracey
935 67c65ed7 2021-09-14 tracey echo 'M alpha' > $testroot/stdout.expected
936 67c65ed7 2021-09-14 tracey echo 'MA new' >> $testroot/stdout.expected
937 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S D\?! > $testroot/stdout)
938 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
939 67c65ed7 2021-09-14 tracey ret="$?"
940 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
941 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
942 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
943 67c65ed7 2021-09-14 tracey return 1
944 67c65ed7 2021-09-14 tracey fi
945 67c65ed7 2021-09-14 tracey
946 67c65ed7 2021-09-14 tracey echo 'M alpha' > $testroot/stdout.expected
947 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S AD\?! > $testroot/stdout)
948 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
949 67c65ed7 2021-09-14 tracey ret="$?"
950 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
951 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
952 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
953 67c65ed7 2021-09-14 tracey return 1
954 67c65ed7 2021-09-14 tracey fi
955 67c65ed7 2021-09-14 tracey
956 67c65ed7 2021-09-14 tracey rm $testroot/stdout.expected
957 67c65ed7 2021-09-14 tracey touch $testroot/stdout.expected
958 67c65ed7 2021-09-14 tracey
959 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S MD\?! > $testroot/stdout)
960 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
961 67c65ed7 2021-09-14 tracey ret="$?"
962 67c65ed7 2021-09-14 tracey if [ "$ret" != "0" ]; then
963 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
964 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
965 67c65ed7 2021-09-14 tracey return 1
966 67c65ed7 2021-09-14 tracey fi
967 67c65ed7 2021-09-14 tracey
968 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
969 081470ac 2020-08-13 stsp }
970 4a26d3f8 2020-10-07 stsp
971 4a26d3f8 2020-10-07 stsp test_status_empty_file() {
972 4a26d3f8 2020-10-07 stsp local testroot=`test_init status_empty_file`
973 4a26d3f8 2020-10-07 stsp
974 4a26d3f8 2020-10-07 stsp got checkout $testroot/repo $testroot/wt > /dev/null
975 4a26d3f8 2020-10-07 stsp ret="$?"
976 4a26d3f8 2020-10-07 stsp if [ "$ret" != "0" ]; then
977 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
978 4a26d3f8 2020-10-07 stsp return 1
979 4a26d3f8 2020-10-07 stsp fi
980 4a26d3f8 2020-10-07 stsp
981 4a26d3f8 2020-10-07 stsp echo -n "" > $testroot/wt/empty
982 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got add empty >/dev/null)
983 4a26d3f8 2020-10-07 stsp
984 4a26d3f8 2020-10-07 stsp echo 'A empty' > $testroot/stdout.expected
985 4a26d3f8 2020-10-07 stsp
986 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
987 4a26d3f8 2020-10-07 stsp
988 4a26d3f8 2020-10-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
989 4a26d3f8 2020-10-07 stsp ret="$?"
990 4a26d3f8 2020-10-07 stsp if [ "$ret" != "0" ]; then
991 4a26d3f8 2020-10-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
992 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
993 4a26d3f8 2020-10-07 stsp return 1
994 4a26d3f8 2020-10-07 stsp fi
995 4a26d3f8 2020-10-07 stsp
996 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got commit -m "empty file" >/dev/null)
997 4a26d3f8 2020-10-07 stsp
998 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
999 081470ac 2020-08-13 stsp
1000 4a26d3f8 2020-10-07 stsp echo -n > $testroot/stdout.expected
1001 4a26d3f8 2020-10-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1002 4a26d3f8 2020-10-07 stsp ret="$?"
1003 4a26d3f8 2020-10-07 stsp if [ "$ret" != "0" ]; then
1004 4a26d3f8 2020-10-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1005 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
1006 4a26d3f8 2020-10-07 stsp return 1
1007 4a26d3f8 2020-10-07 stsp fi
1008 081470ac 2020-08-13 stsp
1009 4a26d3f8 2020-10-07 stsp # update the timestamp; this used to make the file show up as:
1010 4a26d3f8 2020-10-07 stsp # M empty
1011 4a26d3f8 2020-10-07 stsp # which should not happen
1012 4a26d3f8 2020-10-07 stsp touch $testroot/wt/empty
1013 4a26d3f8 2020-10-07 stsp
1014 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1015 4a26d3f8 2020-10-07 stsp
1016 4a26d3f8 2020-10-07 stsp echo -n > $testroot/stdout.expected
1017 4a26d3f8 2020-10-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1018 4a26d3f8 2020-10-07 stsp ret="$?"
1019 4a26d3f8 2020-10-07 stsp if [ "$ret" != "0" ]; then
1020 4a26d3f8 2020-10-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1021 4a26d3f8 2020-10-07 stsp fi
1022 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
1023 4a26d3f8 2020-10-07 stsp }
1024 4a26d3f8 2020-10-07 stsp
1025 7fb414ae 2020-08-08 stsp test_parseargs "$@"
1026 35dc4510 2019-02-04 stsp run_test test_status_basic
1027 f02ba292 2019-02-05 stsp run_test test_status_subdir_no_mods
1028 f02ba292 2019-02-05 stsp run_test test_status_subdir_no_mods2
1029 0dbc2271 2019-02-05 stsp run_test test_status_obstructed
1030 02c07007 2019-02-10 stsp run_test test_status_shows_local_mods_after_update
1031 18831e78 2019-02-10 stsp run_test test_status_unversioned_subdirs
1032 00bb5ea0 2020-07-23 stsp run_test test_status_symlink
1033 3cbbd752 2019-02-19 stsp run_test test_status_shows_no_mods_after_complete_merge
1034 7154f6ce 2019-03-27 stsp run_test test_status_shows_conflict
1035 c577a9ce 2019-07-27 stsp run_test test_status_empty_dir
1036 c577a9ce 2019-07-27 stsp run_test test_status_empty_dir_unversioned_file
1037 72ea6654 2019-07-27 stsp run_test test_status_many_paths
1038 6841da00 2019-08-08 stsp run_test test_status_cvsignore
1039 bd8de430 2019-10-04 stsp run_test test_status_gitignore
1040 081470ac 2020-08-13 stsp run_test test_status_status_code
1041 67c65ed7 2021-09-14 tracey run_test test_status_suppress
1042 4a26d3f8 2020-10-07 stsp run_test test_status_empty_file