Blob


1 REGRESS_TARGETS=checkout update status log add rm diff blame branch tag \
2 ref commit revert cherrypick backout rebase init import histedit \
3 integrate merge stage unstage cat clone fetch send tree patch pack \
4 cleanup
5 NOOBJ=Yes
7 GOT_TEST_ROOT=/tmp
9 checkout:
10 ./checkout.sh -q -r "$(GOT_TEST_ROOT)"
12 update:
13 ./update.sh -q -r "$(GOT_TEST_ROOT)"
15 status:
16 ./status.sh -q -r "$(GOT_TEST_ROOT)"
18 log:
19 ./log.sh -q -r "$(GOT_TEST_ROOT)"
21 add:
22 ./add.sh -q -r "$(GOT_TEST_ROOT)"
24 rm:
25 ./rm.sh -q -r "$(GOT_TEST_ROOT)"
27 diff:
28 ./diff.sh -q -r "$(GOT_TEST_ROOT)"
30 blame:
31 ./blame.sh -q -r "$(GOT_TEST_ROOT)"
33 branch:
34 ./branch.sh -q -r "$(GOT_TEST_ROOT)"
36 tag:
37 ./tag.sh -q -r "$(GOT_TEST_ROOT)"
39 ref:
40 ./ref.sh -q -r "$(GOT_TEST_ROOT)"
42 commit:
43 ./commit.sh -q -r "$(GOT_TEST_ROOT)"
45 revert:
46 ./revert.sh -q -r "$(GOT_TEST_ROOT)"
48 cherrypick:
49 ./cherrypick.sh -q -r "$(GOT_TEST_ROOT)"
51 backout:
52 ./backout.sh -q -r "$(GOT_TEST_ROOT)"
54 rebase:
55 ./rebase.sh -q -r "$(GOT_TEST_ROOT)"
57 init:
58 ./init.sh -q -r "$(GOT_TEST_ROOT)"
60 import:
61 ./import.sh -q -r "$(GOT_TEST_ROOT)"
63 histedit:
64 ./histedit.sh -q -r "$(GOT_TEST_ROOT)"
66 integrate:
67 ./integrate.sh -q -r "$(GOT_TEST_ROOT)"
69 merge:
70 ./merge.sh -q -r "$(GOT_TEST_ROOT)"
72 stage:
73 ./stage.sh -q -r "$(GOT_TEST_ROOT)"
75 unstage:
76 ./unstage.sh -q -r "$(GOT_TEST_ROOT)"
78 cat:
79 ./cat.sh -q -r "$(GOT_TEST_ROOT)"
81 clone:
82 ./clone.sh -q -r "$(GOT_TEST_ROOT)"
84 fetch:
85 ./fetch.sh -q -r "$(GOT_TEST_ROOT)"
87 send:
88 ./send.sh -q -r "$(GOT_TEST_ROOT)"
90 tree:
91 ./tree.sh -q -r "$(GOT_TEST_ROOT)"
93 patch:
94 ./patch.sh -q -r "$(GOT_TEST_ROOT)"
96 pack:
97 ./pack.sh -q -r "$(GOT_TEST_ROOT)"
99 cleanup:
100 ./cleanup.sh -q -r "$(GOT_TEST_ROOT)"
103 .include <bsd.regress.mk>