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 stage unstage cat clone fetch tree pack cleanup
4 NOOBJ=Yes
6 GOT_TEST_ROOT=/tmp
8 all: $(REGRESS_TARGETS)
10 checkout:
11 ./checkout.sh -q -r "$(GOT_TEST_ROOT)"
13 update:
14 ./update.sh -q -r "$(GOT_TEST_ROOT)"
16 status:
17 ./status.sh -q -r "$(GOT_TEST_ROOT)"
19 log:
20 ./log.sh -q -r "$(GOT_TEST_ROOT)"
22 add:
23 ./add.sh -q -r "$(GOT_TEST_ROOT)"
25 rm:
26 ./rm.sh -q -r "$(GOT_TEST_ROOT)"
28 diff:
29 ./diff.sh -q -r "$(GOT_TEST_ROOT)"
31 blame:
32 ./blame.sh -q -r "$(GOT_TEST_ROOT)"
34 branch:
35 ./branch.sh -q -r "$(GOT_TEST_ROOT)"
37 tag:
38 ./tag.sh -q -r "$(GOT_TEST_ROOT)"
40 ref:
41 ./ref.sh -q -r "$(GOT_TEST_ROOT)"
43 commit:
44 ./commit.sh -q -r "$(GOT_TEST_ROOT)"
46 revert:
47 ./revert.sh -q -r "$(GOT_TEST_ROOT)"
49 cherrypick:
50 ./cherrypick.sh -q -r "$(GOT_TEST_ROOT)"
52 backout:
53 ./backout.sh -q -r "$(GOT_TEST_ROOT)"
55 rebase:
56 ./rebase.sh -q -r "$(GOT_TEST_ROOT)"
58 import:
59 ./import.sh -q -r "$(GOT_TEST_ROOT)"
61 histedit:
62 ./histedit.sh -q -r "$(GOT_TEST_ROOT)"
64 integrate:
65 ./integrate.sh -q -r "$(GOT_TEST_ROOT)"
67 stage:
68 ./stage.sh -q -r "$(GOT_TEST_ROOT)"
70 unstage:
71 ./unstage.sh -q -r "$(GOT_TEST_ROOT)"
73 cat:
74 ./cat.sh -q -r "$(GOT_TEST_ROOT)"
76 clone:
77 ./clone.sh -q -r "$(GOT_TEST_ROOT)"
79 fetch:
80 ./fetch.sh -q -r "$(GOT_TEST_ROOT)"
82 send:
83 ./send.sh -q -r "$(GOT_TEST_ROOT)"
85 tree:
86 ./tree.sh -q -r "$(GOT_TEST_ROOT)"
88 pack:
89 ./pack.sh -q -r "$(GOT_TEST_ROOT)"
91 cleanup:
92 ./cleanup.sh -q -r "$(GOT_TEST_ROOT)"