Blob


1 REGRESS_TARGETS=checkout update status log add rm diff blame branch tag \
2 ref commit revert cherrypick backout rebase import histedit \
3 integrate merge stage unstage cat clone fetch tree pack cleanup
4 NOOBJ=Yes
6 GOT_TEST_ROOT=/tmp
8 checkout:
9 ./checkout.sh -q -r "$(GOT_TEST_ROOT)"
11 update:
12 ./update.sh -q -r "$(GOT_TEST_ROOT)"
14 status:
15 ./status.sh -q -r "$(GOT_TEST_ROOT)"
17 log:
18 ./log.sh -q -r "$(GOT_TEST_ROOT)"
20 add:
21 ./add.sh -q -r "$(GOT_TEST_ROOT)"
23 rm:
24 ./rm.sh -q -r "$(GOT_TEST_ROOT)"
26 diff:
27 ./diff.sh -q -r "$(GOT_TEST_ROOT)"
29 blame:
30 ./blame.sh -q -r "$(GOT_TEST_ROOT)"
32 branch:
33 ./branch.sh -q -r "$(GOT_TEST_ROOT)"
35 tag:
36 ./tag.sh -q -r "$(GOT_TEST_ROOT)"
38 ref:
39 ./ref.sh -q -r "$(GOT_TEST_ROOT)"
41 commit:
42 ./commit.sh -q -r "$(GOT_TEST_ROOT)"
44 revert:
45 ./revert.sh -q -r "$(GOT_TEST_ROOT)"
47 cherrypick:
48 ./cherrypick.sh -q -r "$(GOT_TEST_ROOT)"
50 backout:
51 ./backout.sh -q -r "$(GOT_TEST_ROOT)"
53 rebase:
54 ./rebase.sh -q -r "$(GOT_TEST_ROOT)"
56 import:
57 ./import.sh -q -r "$(GOT_TEST_ROOT)"
59 histedit:
60 ./histedit.sh -q -r "$(GOT_TEST_ROOT)"
62 integrate:
63 ./integrate.sh -q -r "$(GOT_TEST_ROOT)"
65 merge:
66 ./merge.sh -q -r "$(GOT_TEST_ROOT)"
68 stage:
69 ./stage.sh -q -r "$(GOT_TEST_ROOT)"
71 unstage:
72 ./unstage.sh -q -r "$(GOT_TEST_ROOT)"
74 cat:
75 ./cat.sh -q -r "$(GOT_TEST_ROOT)"
77 clone:
78 ./clone.sh -q -r "$(GOT_TEST_ROOT)"
80 fetch:
81 ./fetch.sh -q -r "$(GOT_TEST_ROOT)"
83 send:
84 ./send.sh -q -r "$(GOT_TEST_ROOT)"
86 tree:
87 ./tree.sh -q -r "$(GOT_TEST_ROOT)"
89 pack:
90 ./pack.sh -q -r "$(GOT_TEST_ROOT)"
92 cleanup:
93 ./cleanup.sh -q -r "$(GOT_TEST_ROOT)"
96 .include <bsd.regress.mk>