Hash :
f8a36e22
Author :
Date :
2021-08-26T12:30:42
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
REGRESS_TARGETS=checkout update status log add rm diff blame branch tag \
ref commit revert cherrypick backout rebase import histedit \
integrate stage unstage cat clone fetch tree pack cleanup
NOOBJ=Yes
GOT_TEST_ROOT=/tmp
checkout:
./checkout.sh -q -r "$(GOT_TEST_ROOT)"
update:
./update.sh -q -r "$(GOT_TEST_ROOT)"
status:
./status.sh -q -r "$(GOT_TEST_ROOT)"
log:
./log.sh -q -r "$(GOT_TEST_ROOT)"
add:
./add.sh -q -r "$(GOT_TEST_ROOT)"
rm:
./rm.sh -q -r "$(GOT_TEST_ROOT)"
diff:
./diff.sh -q -r "$(GOT_TEST_ROOT)"
blame:
./blame.sh -q -r "$(GOT_TEST_ROOT)"
branch:
./branch.sh -q -r "$(GOT_TEST_ROOT)"
tag:
./tag.sh -q -r "$(GOT_TEST_ROOT)"
ref:
./ref.sh -q -r "$(GOT_TEST_ROOT)"
commit:
./commit.sh -q -r "$(GOT_TEST_ROOT)"
revert:
./revert.sh -q -r "$(GOT_TEST_ROOT)"
cherrypick:
./cherrypick.sh -q -r "$(GOT_TEST_ROOT)"
backout:
./backout.sh -q -r "$(GOT_TEST_ROOT)"
rebase:
./rebase.sh -q -r "$(GOT_TEST_ROOT)"
import:
./import.sh -q -r "$(GOT_TEST_ROOT)"
histedit:
./histedit.sh -q -r "$(GOT_TEST_ROOT)"
integrate:
./integrate.sh -q -r "$(GOT_TEST_ROOT)"
stage:
./stage.sh -q -r "$(GOT_TEST_ROOT)"
unstage:
./unstage.sh -q -r "$(GOT_TEST_ROOT)"
cat:
./cat.sh -q -r "$(GOT_TEST_ROOT)"
clone:
./clone.sh -q -r "$(GOT_TEST_ROOT)"
fetch:
./fetch.sh -q -r "$(GOT_TEST_ROOT)"
send:
./send.sh -q -r "$(GOT_TEST_ROOT)"
tree:
./tree.sh -q -r "$(GOT_TEST_ROOT)"
pack:
./pack.sh -q -r "$(GOT_TEST_ROOT)"
cleanup:
./cleanup.sh -q -r "$(GOT_TEST_ROOT)"
.include <bsd.regress.mk>