3 35dc4510 2019-02-04 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
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.
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.
17 35dc4510 2019-02-04 stsp . ./common.sh
19 f6cae3ed 2020-09-13 naddy test_status_basic() {
20 35dc4510 2019-02-04 stsp local testroot=`test_init status_basic`
22 35dc4510 2019-02-04 stsp got checkout $testroot/repo $testroot/wt > /dev/null
24 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
25 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
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
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
44 35dc4510 2019-02-04 stsp (cd $testroot/wt && got status > $testroot/stdout)
46 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
48 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
49 35dc4510 2019-02-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
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"
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`
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"
67 f02ba292 2019-02-05 stsp got checkout $testroot/repo $testroot/wt > /dev/null
69 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
70 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
74 f02ba292 2019-02-05 stsp touch $testroot/stdout.expected
76 f02ba292 2019-02-05 stsp # This used to erroneously print:
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)
82 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
84 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
85 f02ba292 2019-02-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
87 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
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`
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"
107 f02ba292 2019-02-05 stsp got checkout $testroot/repo $testroot/wt > /dev/null
109 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
110 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
114 f02ba292 2019-02-05 stsp touch $testroot/stdout.expected
116 f02ba292 2019-02-05 stsp # This used to erroneously print:
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)
126 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
128 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
129 f02ba292 2019-02-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
131 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
134 f6cae3ed 2020-09-13 naddy test_status_obstructed() {
135 0dbc2271 2019-02-05 stsp local testroot=`test_init status_obstructed`
137 0dbc2271 2019-02-05 stsp got checkout $testroot/repo $testroot/wt > /dev/null
139 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
140 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
144 0dbc2271 2019-02-05 stsp rm $testroot/wt/epsilon/zeta
145 0dbc2271 2019-02-05 stsp mkdir $testroot/wt/epsilon/zeta
147 0dbc2271 2019-02-05 stsp echo '~ epsilon/zeta' > $testroot/stdout.expected
149 0dbc2271 2019-02-05 stsp (cd $testroot/wt && got status > $testroot/stdout)
151 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
153 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
154 0dbc2271 2019-02-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
155 a84c0d30 2022-03-12 stsp test_done "$testroot" "$ret"
159 a84c0d30 2022-03-12 stsp (cd $testroot/wt && got status epsilon/zeta > $testroot/stdout)
161 a84c0d30 2022-03-12 stsp cmp -s $testroot/stdout.expected $testroot/stdout
163 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
164 a84c0d30 2022-03-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
166 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
169 f6cae3ed 2020-09-13 naddy test_status_shows_local_mods_after_update() {
170 02c07007 2019-02-10 stsp local testroot=`test_init status_shows_local_mods_after_update 1`
172 02c07007 2019-02-10 stsp echo "1" > $testroot/repo/numbers
173 02c07007 2019-02-10 stsp echo "2" >> $testroot/repo/numbers
174 02c07007 2019-02-10 stsp echo "3" >> $testroot/repo/numbers
175 02c07007 2019-02-10 stsp echo "4" >> $testroot/repo/numbers
176 02c07007 2019-02-10 stsp echo "5" >> $testroot/repo/numbers
177 02c07007 2019-02-10 stsp echo "6" >> $testroot/repo/numbers
178 02c07007 2019-02-10 stsp echo "7" >> $testroot/repo/numbers
179 02c07007 2019-02-10 stsp echo "8" >> $testroot/repo/numbers
180 02c07007 2019-02-10 stsp (cd $testroot/repo && git add numbers)
181 02c07007 2019-02-10 stsp git_commit $testroot/repo -m "added numbers file"
183 02c07007 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
185 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
186 02c07007 2019-02-10 stsp test_done "$testroot" "$ret"
190 02c07007 2019-02-10 stsp sed -i 's/2/22/' $testroot/repo/numbers
191 02c07007 2019-02-10 stsp git_commit $testroot/repo -m "modified line 2"
193 02c07007 2019-02-10 stsp # modify line 7; both changes should merge cleanly
194 02c07007 2019-02-10 stsp sed -i 's/7/77/' $testroot/wt/numbers
196 02c07007 2019-02-10 stsp echo "G numbers" > $testroot/stdout.expected
197 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
198 02c07007 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
199 02c07007 2019-02-10 stsp echo >> $testroot/stdout.expected
201 02c07007 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
203 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
205 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
206 02c07007 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
207 02c07007 2019-02-10 stsp test_done "$testroot" "$ret"
211 02c07007 2019-02-10 stsp echo 'M numbers' > $testroot/stdout.expected
213 02c07007 2019-02-10 stsp (cd $testroot/wt && got status > $testroot/stdout)
215 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
217 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
218 02c07007 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
220 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
223 f6cae3ed 2020-09-13 naddy test_status_unversioned_subdirs() {
224 18831e78 2019-02-10 stsp local testroot=`test_init status_unversioned_subdirs 1`
226 18831e78 2019-02-10 stsp mkdir $testroot/repo/cdfs/
227 18831e78 2019-02-10 stsp touch $testroot/repo/cdfs/Makefile
228 18831e78 2019-02-10 stsp mkdir $testroot/repo/common/
229 18831e78 2019-02-10 stsp touch $testroot/repo/common/Makefile
230 18831e78 2019-02-10 stsp mkdir $testroot/repo/iso/
231 18831e78 2019-02-10 stsp touch $testroot/repo/iso/Makefile
232 18831e78 2019-02-10 stsp mkdir $testroot/repo/ramdisk/
233 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk/Makefile
234 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk/list.local
235 18831e78 2019-02-10 stsp mkdir $testroot/repo/ramdisk_cd/
236 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk_cd/Makefile
237 18831e78 2019-02-10 stsp touch $testroot/repo/ramdisk_cd/list.local
238 18831e78 2019-02-10 stsp (cd $testroot/repo && git add .)
239 18831e78 2019-02-10 stsp git_commit $testroot/repo -m "first commit"
241 18831e78 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
243 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
244 18831e78 2019-02-10 stsp test_done "$testroot" "$ret"
248 18831e78 2019-02-10 stsp mkdir $testroot/wt/cdfs/obj
249 18831e78 2019-02-10 stsp mkdir $testroot/wt/ramdisk/obj
250 18831e78 2019-02-10 stsp mkdir $testroot/wt/ramdisk_cd/obj
251 18831e78 2019-02-10 stsp mkdir $testroot/wt/iso/obj
253 18831e78 2019-02-10 stsp echo -n > $testroot/stdout.expected
255 18831e78 2019-02-10 stsp # This used to erroneously print:
257 18831e78 2019-02-10 stsp # ! ramdisk_cd/Makefile
258 18831e78 2019-02-10 stsp # ! ramdisk_cd/list.local
259 18831e78 2019-02-10 stsp # ? ramdisk_cd/Makefile
260 18831e78 2019-02-10 stsp # ? ramdisk_cd/list.local
261 18831e78 2019-02-10 stsp (cd $testroot/wt && got status > $testroot/stdout)
263 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
265 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
266 18831e78 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
268 18831e78 2019-02-10 stsp test_done "$testroot" "$ret"
271 f6cae3ed 2020-09-13 naddy test_status_symlink() {
272 00bb5ea0 2020-07-23 stsp local testroot=`test_init status_symlink`
274 2c201a36 2019-02-10 stsp mkdir $testroot/repo/ramdisk/
275 2c201a36 2019-02-10 stsp touch $testroot/repo/ramdisk/Makefile
276 d4ae64fa 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
277 d4ae64fa 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
278 d4ae64fa 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
279 2c201a36 2019-02-10 stsp (cd $testroot/repo && git add .)
280 2c201a36 2019-02-10 stsp git_commit $testroot/repo -m "first commit"
282 2c201a36 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
284 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
285 2c201a36 2019-02-10 stsp test_done "$testroot" "$ret"
289 2c201a36 2019-02-10 stsp ln -s /usr/obj/distrib/i386/ramdisk $testroot/wt/ramdisk/obj
291 00bb5ea0 2020-07-23 stsp echo "? ramdisk/obj" > $testroot/stdout.expected
293 2c201a36 2019-02-10 stsp (cd $testroot/wt && got status > $testroot/stdout)
295 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
297 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
298 2c201a36 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
299 00bb5ea0 2020-07-23 stsp test_done "$testroot" "$ret"
303 d4ae64fa 2020-07-23 stsp (cd $testroot/wt && ln -sf beta alpha.link)
304 d4ae64fa 2020-07-23 stsp (cd $testroot/wt && ln -sfh gamma epsilon.link)
306 00bb5ea0 2020-07-23 stsp (cd $testroot/wt && ln -s /etc/passwd passwd.link)
307 00bb5ea0 2020-07-23 stsp (cd $testroot/wt && ln -s ../beta epsilon/beta.link)
308 d4ae64fa 2020-07-23 stsp (cd $testroot/wt && got add passwd.link epsilon/beta.link > /dev/null)
310 d4ae64fa 2020-07-23 stsp (cd $testroot/wt && got rm nonexistent.link > /dev/null)
312 d4ae64fa 2020-07-23 stsp echo 'M alpha.link' > $testroot/stdout.expected
313 00bb5ea0 2020-07-23 stsp echo 'A epsilon/beta.link' >> $testroot/stdout.expected
314 d4ae64fa 2020-07-23 stsp echo 'M epsilon.link' >> $testroot/stdout.expected
315 d4ae64fa 2020-07-23 stsp echo 'D nonexistent.link' >> $testroot/stdout.expected
316 00bb5ea0 2020-07-23 stsp echo 'A passwd.link' >> $testroot/stdout.expected
317 00bb5ea0 2020-07-23 stsp echo "? ramdisk/obj" >> $testroot/stdout.expected
319 00bb5ea0 2020-07-23 stsp (cd $testroot/wt && got status > $testroot/stdout)
321 00bb5ea0 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
323 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
324 00bb5ea0 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
326 2c201a36 2019-02-10 stsp test_done "$testroot" "$ret"
329 f6cae3ed 2020-09-13 naddy test_status_shows_no_mods_after_complete_merge() {
330 3cbbd752 2019-02-19 stsp local testroot=`test_init status_shows_no_mods_after_complete_merge 1`
332 3cbbd752 2019-02-19 stsp # make this file larger than the usual blob buffer size of 8192
333 c036d108 2022-04-15 op jot 16384 > $testroot/repo/numbers
335 3cbbd752 2019-02-19 stsp (cd $testroot/repo && git add numbers)
336 3cbbd752 2019-02-19 stsp git_commit $testroot/repo -m "added numbers file"
338 3cbbd752 2019-02-19 stsp got checkout $testroot/repo $testroot/wt > /dev/null
340 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
341 3cbbd752 2019-02-19 stsp test_done "$testroot" "$ret"
345 3cbbd752 2019-02-19 stsp sed -i 's/2/22/' $testroot/repo/numbers
346 3cbbd752 2019-02-19 stsp git_commit $testroot/repo -m "modified line 2"
348 3cbbd752 2019-02-19 stsp # modify line 2 again; no local changes are left after merge
349 3cbbd752 2019-02-19 stsp sed -i 's/2/22/' $testroot/wt/numbers
351 3cbbd752 2019-02-19 stsp echo "G numbers" > $testroot/stdout.expected
352 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
353 3cbbd752 2019-02-19 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
354 3cbbd752 2019-02-19 stsp echo >> $testroot/stdout.expected
356 3cbbd752 2019-02-19 stsp (cd $testroot/wt && got update > $testroot/stdout)
358 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
360 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
361 3cbbd752 2019-02-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
362 3cbbd752 2019-02-19 stsp test_done "$testroot" "$ret"
366 3cbbd752 2019-02-19 stsp echo -n > $testroot/stdout.expected
368 3cbbd752 2019-02-19 stsp (cd $testroot/wt && got status > $testroot/stdout)
370 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
372 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
373 3cbbd752 2019-02-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
375 3cbbd752 2019-02-19 stsp test_done "$testroot" "$ret"
378 f6cae3ed 2020-09-13 naddy test_status_shows_conflict() {
379 7154f6ce 2019-03-27 stsp local testroot=`test_init status_shows_conflict 1`
381 7154f6ce 2019-03-27 stsp echo "1" > $testroot/repo/numbers
382 7154f6ce 2019-03-27 stsp echo "2" >> $testroot/repo/numbers
383 7154f6ce 2019-03-27 stsp echo "3" >> $testroot/repo/numbers
384 7154f6ce 2019-03-27 stsp echo "4" >> $testroot/repo/numbers
385 7154f6ce 2019-03-27 stsp echo "5" >> $testroot/repo/numbers
386 7154f6ce 2019-03-27 stsp echo "6" >> $testroot/repo/numbers
387 7154f6ce 2019-03-27 stsp echo "7" >> $testroot/repo/numbers
388 7154f6ce 2019-03-27 stsp echo "8" >> $testroot/repo/numbers
389 7154f6ce 2019-03-27 stsp (cd $testroot/repo && git add numbers)
390 7154f6ce 2019-03-27 stsp git_commit $testroot/repo -m "added numbers file"
392 7154f6ce 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
394 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
395 7154f6ce 2019-03-27 stsp test_done "$testroot" "$ret"
399 7154f6ce 2019-03-27 stsp sed -i 's/2/22/' $testroot/repo/numbers
400 7154f6ce 2019-03-27 stsp git_commit $testroot/repo -m "modified line 2"
402 7154f6ce 2019-03-27 stsp # modify line 2 in a conflicting way
403 7154f6ce 2019-03-27 stsp sed -i 's/2/77/' $testroot/wt/numbers
405 7154f6ce 2019-03-27 stsp echo "C numbers" > $testroot/stdout.expected
406 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
407 7154f6ce 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
408 7154f6ce 2019-03-27 stsp echo >> $testroot/stdout.expected
409 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
411 7154f6ce 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
413 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
415 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
416 7154f6ce 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
417 7154f6ce 2019-03-27 stsp test_done "$testroot" "$ret"
421 7154f6ce 2019-03-27 stsp echo 'C numbers' > $testroot/stdout.expected
423 7154f6ce 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
425 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
427 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
428 7154f6ce 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
430 7154f6ce 2019-03-27 stsp test_done "$testroot" "$ret"
433 f6cae3ed 2020-09-13 naddy test_status_empty_dir() {
434 c577a9ce 2019-07-27 stsp local testroot=`test_init status_empty_dir`
436 c577a9ce 2019-07-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
438 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
439 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
443 c577a9ce 2019-07-27 stsp rm $testroot/wt/epsilon/zeta
445 c577a9ce 2019-07-27 stsp echo '! epsilon/zeta' > $testroot/stdout.expected
447 c577a9ce 2019-07-27 stsp (cd $testroot/wt && got status epsilon > $testroot/stdout)
449 c577a9ce 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
451 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
452 c577a9ce 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
454 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
457 f6cae3ed 2020-09-13 naddy test_status_empty_dir_unversioned_file() {
458 c577a9ce 2019-07-27 stsp local testroot=`test_init status_empty_dir_unversioned_file`
460 c577a9ce 2019-07-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
462 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
463 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
467 c577a9ce 2019-07-27 stsp rm $testroot/wt/epsilon/zeta
468 c577a9ce 2019-07-27 stsp touch $testroot/wt/epsilon/unversioned
470 c577a9ce 2019-07-27 stsp echo '? epsilon/unversioned' > $testroot/stdout.expected
471 c577a9ce 2019-07-27 stsp echo '! epsilon/zeta' >> $testroot/stdout.expected
473 c577a9ce 2019-07-27 stsp (cd $testroot/wt && got status epsilon > $testroot/stdout)
475 c577a9ce 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
477 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
478 c577a9ce 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
480 c577a9ce 2019-07-27 stsp test_done "$testroot" "$ret"
483 f6cae3ed 2020-09-13 naddy test_status_many_paths() {
484 72ea6654 2019-07-27 stsp local testroot=`test_init status_many_paths`
486 72ea6654 2019-07-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
488 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
489 72ea6654 2019-07-27 stsp test_done "$testroot" "$ret"
493 72ea6654 2019-07-27 stsp echo "modified alpha" > $testroot/wt/alpha
494 72ea6654 2019-07-27 stsp (cd $testroot/wt && got rm beta >/dev/null)
495 72ea6654 2019-07-27 stsp echo "unversioned file" > $testroot/wt/foo
496 72ea6654 2019-07-27 stsp rm $testroot/wt/epsilon/zeta
497 72ea6654 2019-07-27 stsp touch $testroot/wt/beta
498 72ea6654 2019-07-27 stsp echo "new file" > $testroot/wt/new
499 72ea6654 2019-07-27 stsp mkdir $testroot/wt/newdir
500 72ea6654 2019-07-27 stsp (cd $testroot/wt && got add new >/dev/null)
502 10a623df 2021-10-11 stsp (cd $testroot/wt && got status alpha > $testroot/stdout.expected)
503 10a623df 2021-10-11 stsp (cd $testroot/wt && got status beta >> $testroot/stdout.expected)
504 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status epsilon >> $testroot/stdout.expected)
505 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status foo >> $testroot/stdout.expected)
506 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status new >> $testroot/stdout.expected)
507 10a623df 2021-10-11 stsp (cd $testroot/wt && got status newdir >> $testroot/stdout.expected)
508 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status . >> $testroot/stdout.expected)
510 72ea6654 2019-07-27 stsp (cd $testroot/wt && got status newdir alpha epsilon foo new beta . \
511 72ea6654 2019-07-27 stsp > $testroot/stdout)
513 72ea6654 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
515 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
516 72ea6654 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
518 72ea6654 2019-07-27 stsp test_done "$testroot" "$ret"
521 f6cae3ed 2020-09-13 naddy test_status_cvsignore() {
522 6841da00 2019-08-08 stsp local testroot=`test_init status_cvsignore`
524 6841da00 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
526 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
527 6841da00 2019-08-08 stsp test_done "$testroot" "$ret"
531 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/foo
532 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/foop
533 3143d852 2020-06-25 stsp echo "unversioned file" > $testroot/wt/epsilon/foo
534 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/epsilon/bar
535 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/epsilon/boo
536 6841da00 2019-08-08 stsp echo "unversioned file" > $testroot/wt/epsilon/moo
537 3143d852 2020-06-25 stsp mkdir -p $testroot/wt/epsilon/new/
538 3143d852 2020-06-25 stsp echo "unversioned file" > $testroot/wt/epsilon/new/foo
539 3143d852 2020-06-25 stsp echo "**/foo" > $testroot/wt/.cvsignore
540 8f2ca62d 2021-10-13 stsp echo "**/gamma" >> $testroot/wt/.cvsignore
541 6841da00 2019-08-08 stsp echo "bar" > $testroot/wt/epsilon/.cvsignore
542 6841da00 2019-08-08 stsp echo "moo" >> $testroot/wt/epsilon/.cvsignore
544 6841da00 2019-08-08 stsp echo '? .cvsignore' > $testroot/stdout.expected
545 6841da00 2019-08-08 stsp echo '? epsilon/.cvsignore' >> $testroot/stdout.expected
546 6841da00 2019-08-08 stsp echo '? epsilon/boo' >> $testroot/stdout.expected
547 6841da00 2019-08-08 stsp echo '? foop' >> $testroot/stdout.expected
548 6841da00 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
550 6841da00 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
552 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
553 6841da00 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
554 b80270a7 2019-08-08 stsp test_done "$testroot" "$ret"
558 3143d852 2020-06-25 stsp echo '? epsilon/.cvsignore' > $testroot/stdout.expected
559 3143d852 2020-06-25 stsp echo '? epsilon/boo' >> $testroot/stdout.expected
560 3143d852 2020-06-25 stsp (cd $testroot/wt && got status epsilon > $testroot/stdout)
562 3143d852 2020-06-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
564 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
565 3143d852 2020-06-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
566 3143d852 2020-06-25 stsp test_done "$testroot" "$ret"
570 3143d852 2020-06-25 stsp echo -n '' > $testroot/stdout.expected
571 3143d852 2020-06-25 stsp (cd $testroot/wt && got status epsilon/new > $testroot/stdout)
573 3143d852 2020-06-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
575 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
576 3143d852 2020-06-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
577 3143d852 2020-06-25 stsp test_done "$testroot" "$ret"
581 b80270a7 2019-08-08 stsp echo '? .cvsignore' > $testroot/stdout.expected
582 b80270a7 2019-08-08 stsp echo '? epsilon/.cvsignore' >> $testroot/stdout.expected
583 b80270a7 2019-08-08 stsp echo '? epsilon/boo' >> $testroot/stdout.expected
584 b80270a7 2019-08-08 stsp echo '? foop' >> $testroot/stdout.expected
585 b80270a7 2019-08-08 stsp (cd $testroot/wt/gamma && got status > $testroot/stdout)
587 b80270a7 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
589 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
590 b80270a7 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
591 f6343036 2021-06-22 stsp test_done "$testroot" "$ret"
595 f6343036 2021-06-22 stsp cat > $testroot/stdout.expected <<EOF
596 f6343036 2021-06-22 stsp ? .cvsignore
597 f6343036 2021-06-22 stsp ? epsilon/.cvsignore
598 f6343036 2021-06-22 stsp ? epsilon/bar
599 f6343036 2021-06-22 stsp ? epsilon/boo
600 f6343036 2021-06-22 stsp ? epsilon/foo
601 f6343036 2021-06-22 stsp ? epsilon/moo
602 f6343036 2021-06-22 stsp ? epsilon/new/foo
606 f6343036 2021-06-22 stsp (cd $testroot/wt && got status -I > $testroot/stdout)
608 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
609 f6343036 2021-06-22 stsp echo "got status failed unexpectedly" >&2
610 f6343036 2021-06-22 stsp test_done "$testroot" "1"
614 f6343036 2021-06-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
616 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
617 f6343036 2021-06-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
619 6841da00 2019-08-08 stsp test_done "$testroot" "$ret"
622 f6cae3ed 2020-09-13 naddy test_status_gitignore() {
623 bd8de430 2019-10-04 stsp local testroot=`test_init status_gitignore`
625 bd8de430 2019-10-04 stsp got checkout $testroot/repo $testroot/wt > /dev/null
627 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
628 bd8de430 2019-10-04 stsp test_done "$testroot" "$ret"
632 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/foo
633 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/foop
634 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/barp
635 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/epsilon/bar
636 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/epsilon/boo
637 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/epsilon/moo
638 bd8de430 2019-10-04 stsp mkdir -p $testroot/wt/a/b/c/
639 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/a/b/c/foo
640 bd8de430 2019-10-04 stsp echo "unversioned file" > $testroot/wt/a/b/c/zoo
641 bd8de430 2019-10-04 stsp echo "foo" > $testroot/wt/.gitignore
642 bd8de430 2019-10-04 stsp echo "bar*" >> $testroot/wt/.gitignore
643 bd8de430 2019-10-04 stsp echo "epsilon/**" >> $testroot/wt/.gitignore
644 bd8de430 2019-10-04 stsp echo "a/**/foo" >> $testroot/wt/.gitignore
645 bd8de430 2019-10-04 stsp echo "**/zoo" >> $testroot/wt/.gitignore
647 bd8de430 2019-10-04 stsp echo '? .gitignore' > $testroot/stdout.expected
648 bd8de430 2019-10-04 stsp echo '? foop' >> $testroot/stdout.expected
649 bd8de430 2019-10-04 stsp (cd $testroot/wt && got status > $testroot/stdout)
651 bd8de430 2019-10-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
653 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
654 bd8de430 2019-10-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
655 bd8de430 2019-10-04 stsp test_done "$testroot" "$ret"
659 bd8de430 2019-10-04 stsp echo '? .gitignore' > $testroot/stdout.expected
660 bd8de430 2019-10-04 stsp echo '? foop' >> $testroot/stdout.expected
661 bd8de430 2019-10-04 stsp (cd $testroot/wt/gamma && got status > $testroot/stdout)
663 bd8de430 2019-10-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
665 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
666 bd8de430 2019-10-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
667 f6343036 2021-06-22 stsp test_done "$testroot" "$ret"
671 f6343036 2021-06-22 stsp cat > $testroot/stdout.expected <<EOF
672 f6343036 2021-06-22 stsp ? .gitignore
673 f6343036 2021-06-22 stsp ? a/b/c/foo
674 f6343036 2021-06-22 stsp ? a/b/c/zoo
676 f6343036 2021-06-22 stsp ? epsilon/bar
677 f6343036 2021-06-22 stsp ? epsilon/boo
678 f6343036 2021-06-22 stsp ? epsilon/moo
682 f6343036 2021-06-22 stsp (cd $testroot/wt && got status -I > $testroot/stdout)
684 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
685 f6343036 2021-06-22 stsp echo "got status failed unexpectedly" >&2
686 f6343036 2021-06-22 stsp test_done "$testroot" "1"
690 f6343036 2021-06-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
692 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
693 f6343036 2021-06-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
695 bd8de430 2019-10-04 stsp test_done "$testroot" "$ret"
698 f6cae3ed 2020-09-13 naddy test_status_status_code() {
699 081470ac 2020-08-13 stsp local testroot=`test_init status_status_code`
701 081470ac 2020-08-13 stsp got checkout $testroot/repo $testroot/wt > /dev/null
703 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
704 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
708 081470ac 2020-08-13 stsp echo "modified alpha" > $testroot/wt/alpha
709 081470ac 2020-08-13 stsp (cd $testroot/wt && got rm beta >/dev/null)
710 081470ac 2020-08-13 stsp echo "unversioned file" > $testroot/wt/foo
711 081470ac 2020-08-13 stsp rm $testroot/wt/epsilon/zeta
712 081470ac 2020-08-13 stsp touch $testroot/wt/beta
713 081470ac 2020-08-13 stsp echo "new file" > $testroot/wt/new
714 081470ac 2020-08-13 stsp (cd $testroot/wt && got add new >/dev/null)
716 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s xDM \
717 081470ac 2020-08-13 stsp > $testroot/stdout 2> $testroot/stderr)
719 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
720 081470ac 2020-08-13 stsp echo "status succeeded unexpectedly" >&2
721 081470ac 2020-08-13 stsp test_done "$testroot" "1"
725 081470ac 2020-08-13 stsp echo "got: invalid status code 'x'" > $testroot/stderr.expected
726 081470ac 2020-08-13 stsp cmp -s $testroot/stderr.expected $testroot/stderr
728 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
729 081470ac 2020-08-13 stsp diff -u $testroot/stderr.expected $testroot/stderr
730 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
734 081470ac 2020-08-13 stsp echo 'M alpha' > $testroot/stdout.expected
735 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s M > $testroot/stdout)
736 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
738 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
739 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
740 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
744 081470ac 2020-08-13 stsp echo 'D beta' > $testroot/stdout.expected
745 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s D > $testroot/stdout)
746 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
748 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
749 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
750 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
754 081470ac 2020-08-13 stsp echo '! epsilon/zeta' > $testroot/stdout.expected
755 081470ac 2020-08-13 stsp echo '? foo' >> $testroot/stdout.expected
756 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -s !\? > $testroot/stdout)
757 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
759 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
760 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
761 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
765 081470ac 2020-08-13 stsp echo 'A new' > $testroot/stdout.expected
766 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s A > $testroot/stdout)
767 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
769 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
770 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
771 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
775 081470ac 2020-08-13 stsp (cd $testroot/wt && got stage new > $testroot/stdout)
777 081470ac 2020-08-13 stsp echo ' A new' > $testroot/stdout.expected
778 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s A > $testroot/stdout)
779 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
781 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
782 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
783 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
787 081470ac 2020-08-13 stsp echo 'changed file new' > $testroot/wt/new
789 081470ac 2020-08-13 stsp echo 'MA new' > $testroot/stdout.expected
790 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s A > $testroot/stdout)
791 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
793 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
794 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
795 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
799 081470ac 2020-08-13 stsp echo 'M alpha' > $testroot/stdout.expected
800 081470ac 2020-08-13 stsp echo 'MA new' >> $testroot/stdout.expected
801 081470ac 2020-08-13 stsp (cd $testroot/wt && got status -s M > $testroot/stdout)
802 081470ac 2020-08-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
804 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
805 081470ac 2020-08-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
806 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
810 081470ac 2020-08-13 stsp test_done "$testroot" "$ret"
813 67c65ed7 2021-09-14 tracey test_status_suppress() {
814 67c65ed7 2021-09-14 tracey local testroot=`test_init status_suppress`
816 67c65ed7 2021-09-14 tracey got checkout $testroot/repo $testroot/wt > /dev/null
818 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
819 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
823 67c65ed7 2021-09-14 tracey echo "modified alpha" > $testroot/wt/alpha
824 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got rm beta >/dev/null)
825 67c65ed7 2021-09-14 tracey echo "unversioned file" > $testroot/wt/foo
826 67c65ed7 2021-09-14 tracey rm $testroot/wt/epsilon/zeta
827 67c65ed7 2021-09-14 tracey touch $testroot/wt/beta
828 67c65ed7 2021-09-14 tracey echo "new file" > $testroot/wt/new
829 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got add new >/dev/null)
831 e3a46353 2021-09-14 stsp (cd $testroot/wt && got status -S A -s M \
832 e3a46353 2021-09-14 stsp > $testroot/stdout 2> $testroot/stderr)
834 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
835 e3a46353 2021-09-14 stsp echo "status succeeded unexpectedly" >&2
836 e3a46353 2021-09-14 stsp test_done "$testroot" "1"
840 e3a46353 2021-09-14 stsp echo "got: -s and -S options are mutually exclusive" \
841 e3a46353 2021-09-14 stsp > $testroot/stderr.expected
842 e3a46353 2021-09-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
844 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
845 e3a46353 2021-09-14 stsp diff -u $testroot/stderr.expected $testroot/stderr
846 e3a46353 2021-09-14 stsp test_done "$testroot" "$ret"
850 e3a46353 2021-09-14 stsp (cd $testroot/wt && got status -s A -S M \
851 e3a46353 2021-09-14 stsp > $testroot/stdout 2> $testroot/stderr)
853 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
854 e3a46353 2021-09-14 stsp echo "status succeeded unexpectedly" >&2
855 e3a46353 2021-09-14 stsp test_done "$testroot" "1"
859 e3a46353 2021-09-14 stsp echo "got: -S and -s options are mutually exclusive" \
860 e3a46353 2021-09-14 stsp > $testroot/stderr.expected
861 e3a46353 2021-09-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
863 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
864 e3a46353 2021-09-14 stsp diff -u $testroot/stderr.expected $testroot/stderr
865 e3a46353 2021-09-14 stsp test_done "$testroot" "$ret"
869 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got status -S xDM \
870 67c65ed7 2021-09-14 tracey > $testroot/stdout 2> $testroot/stderr)
872 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
873 67c65ed7 2021-09-14 tracey echo "status succeeded unexpectedly" >&2
874 67c65ed7 2021-09-14 tracey test_done "$testroot" "1"
878 67c65ed7 2021-09-14 tracey echo "got: invalid status code 'x'" > $testroot/stderr.expected
879 67c65ed7 2021-09-14 tracey cmp -s $testroot/stderr.expected $testroot/stderr
881 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
882 67c65ed7 2021-09-14 tracey diff -u $testroot/stderr.expected $testroot/stderr
883 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
887 67c65ed7 2021-09-14 tracey echo 'M alpha' > $testroot/stdout.expected
888 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S D\?A! > $testroot/stdout)
889 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
891 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
892 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
893 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
897 67c65ed7 2021-09-14 tracey echo 'D beta' > $testroot/stdout.expected
898 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S M\?A! > $testroot/stdout)
899 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
901 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
902 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
903 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
907 67c65ed7 2021-09-14 tracey echo '! epsilon/zeta' > $testroot/stdout.expected
908 67c65ed7 2021-09-14 tracey echo '? foo' >> $testroot/stdout.expected
909 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got status -S MDA > $testroot/stdout)
910 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
912 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
913 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
914 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
918 67c65ed7 2021-09-14 tracey echo 'A new' > $testroot/stdout.expected
919 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S MD\?! > $testroot/stdout)
920 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
922 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
923 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
924 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
928 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got stage new > $testroot/stdout)
930 67c65ed7 2021-09-14 tracey echo ' A new' > $testroot/stdout.expected
931 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S MD\?! > $testroot/stdout)
932 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
934 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
935 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
936 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
940 67c65ed7 2021-09-14 tracey echo 'changed file new' > $testroot/wt/new
942 67c65ed7 2021-09-14 tracey echo 'M alpha' > $testroot/stdout.expected
943 67c65ed7 2021-09-14 tracey echo 'MA new' >> $testroot/stdout.expected
944 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S D\?! > $testroot/stdout)
945 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
947 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
948 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
949 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
953 67c65ed7 2021-09-14 tracey echo 'M alpha' > $testroot/stdout.expected
954 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S AD\?! > $testroot/stdout)
955 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
957 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
958 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
959 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
963 67c65ed7 2021-09-14 tracey rm $testroot/stdout.expected
964 67c65ed7 2021-09-14 tracey touch $testroot/stdout.expected
966 67d7451c 2021-09-15 naddy (cd $testroot/wt && got status -S MD\?! > $testroot/stdout)
967 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
969 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
970 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
971 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
975 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
978 4a26d3f8 2020-10-07 stsp test_status_empty_file() {
979 4a26d3f8 2020-10-07 stsp local testroot=`test_init status_empty_file`
981 4a26d3f8 2020-10-07 stsp got checkout $testroot/repo $testroot/wt > /dev/null
983 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
984 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
988 4a26d3f8 2020-10-07 stsp echo -n "" > $testroot/wt/empty
989 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got add empty >/dev/null)
991 4a26d3f8 2020-10-07 stsp echo 'A empty' > $testroot/stdout.expected
993 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
995 4a26d3f8 2020-10-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
997 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
998 4a26d3f8 2020-10-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
999 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
1003 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got commit -m "empty file" >/dev/null)
1005 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1007 4a26d3f8 2020-10-07 stsp echo -n > $testroot/stdout.expected
1008 4a26d3f8 2020-10-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1010 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1011 4a26d3f8 2020-10-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1012 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
1016 4a26d3f8 2020-10-07 stsp # update the timestamp; this used to make the file show up as:
1018 4a26d3f8 2020-10-07 stsp # which should not happen
1019 4a26d3f8 2020-10-07 stsp touch $testroot/wt/empty
1021 4a26d3f8 2020-10-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1023 4a26d3f8 2020-10-07 stsp echo -n > $testroot/stdout.expected
1024 4a26d3f8 2020-10-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1026 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1027 4a26d3f8 2020-10-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1029 4a26d3f8 2020-10-07 stsp test_done "$testroot" "$ret"
1032 7fb414ae 2020-08-08 stsp test_parseargs "$@"
1033 35dc4510 2019-02-04 stsp run_test test_status_basic
1034 f02ba292 2019-02-05 stsp run_test test_status_subdir_no_mods
1035 f02ba292 2019-02-05 stsp run_test test_status_subdir_no_mods2
1036 0dbc2271 2019-02-05 stsp run_test test_status_obstructed
1037 02c07007 2019-02-10 stsp run_test test_status_shows_local_mods_after_update
1038 18831e78 2019-02-10 stsp run_test test_status_unversioned_subdirs
1039 00bb5ea0 2020-07-23 stsp run_test test_status_symlink
1040 3cbbd752 2019-02-19 stsp run_test test_status_shows_no_mods_after_complete_merge
1041 7154f6ce 2019-03-27 stsp run_test test_status_shows_conflict
1042 c577a9ce 2019-07-27 stsp run_test test_status_empty_dir
1043 c577a9ce 2019-07-27 stsp run_test test_status_empty_dir_unversioned_file
1044 72ea6654 2019-07-27 stsp run_test test_status_many_paths
1045 6841da00 2019-08-08 stsp run_test test_status_cvsignore
1046 bd8de430 2019-10-04 stsp run_test test_status_gitignore
1047 081470ac 2020-08-13 stsp run_test test_status_status_code
1048 67c65ed7 2021-09-14 tracey run_test test_status_suppress
1049 4a26d3f8 2020-10-07 stsp run_test test_status_empty_file