3 # Copyright (c) 2005 Junio C Hamano
6 # For repeatability, reset the environment to known value.
14 unset COMMIT_AUTHOR_EMAIL
15 unset COMMIT_AUTHOR_NAME
16 unset GIT_ALTERNATE_OBJECT_DIRECTORIES
18 unset GIT_AUTHOR_EMAIL
20 unset GIT_COMMITTER_EMAIL
21 unset GIT_COMMITTER_NAME
24 unset GIT_EXTERNAL_DIFF
26 unset GIT_OBJECT_DIRECTORY
27 unset SHA1_FILE_DIRECTORIES
28 unset SHA1_FILE_DIRECTORY
30 # Each test should start with something like this, after copyright notices:
32 # test_description='Description of this test...
33 # This test checks if command xyzzy does the right thing...
47 test "${test_description}" != "" ||
48 error
"Test script did not set test_description."
53 -d|
--d|
--de|
--deb|
--debu|
--debug)
55 -i|
--i|
--im|
--imm|
--imme|
--immed|
--immedi|
--immedia|
--immediat|
--immediate)
57 -h|
--h|
--he|
--hel|
--help)
58 echo "$test_description"
60 -v|
--v|
--ve|
--ver|
--verb|
--verbo|
--verbos|
--verbose)
68 if test "$verbose" = "t"
72 exec 4>/dev
/null
3>/dev
/null
78 trap 'echo >&5 "FATAL: Unexpected exit with code $?"; exit 1' exit
81 # You are not expected to call test_ok_ and test_failure_ directly, use
82 # the text_expect_* functions instead.
85 test_count
=$
(expr "$test_count" + 1)
86 say
" ok $test_count: $@"
90 test_count
=$
(expr "$test_count" + 1)
91 test_failure
=$
(expr "$test_failure" + 1);
92 say
"FAIL $test_count: $1"
94 echo "$@" |
sed -e 's/^/ /'
95 test "$immediate" = "" ||
{ trap - exit; exit 1; }
100 test "$debug" = "" ||
eval "$1"
109 test_expect_failure
() {
111 error
"bug in the test script: not 2 parameters to test-expect-failure"
112 say
>&3 "expecting failure: $2"
114 if [ "$?" = 0 -a "$eval_ret" != 0 ]
122 test_expect_success
() {
124 error
"bug in the test script: not 2 parameters to test-expect-success"
125 say
>&3 "expecting success: $2"
127 if [ "$?" = 0 -a "$eval_ret" = 0 ]
137 case "$test_failure" in
140 # cd .. && rm -fr trash
141 # but that means we forbid any tests that use their own
142 # subdirectory from calling test_done without coming back
143 # to where they started from.
144 # The Makefile provided will clean this test area so
145 # we will leave things as they are.
147 say
"passed all $test_count test(s)"
151 say
"failed $test_failure among $test_count test(s)"
157 # Test the binaries we have just built. The tests are kept in
158 # t/ subdirectory and are run in trash subdirectory.
166 git-init-db
2>/dev
/null || error
"cannot run git-init-db"