t/Makefile: "trash" directory was renamed recently

Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brandon Casey 2008-05-17 23:03:03 -05:00 committed by Junio C Hamano
parent 2a028a0cab
commit 9231e3a953
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ $(T):
@echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS) @echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
clean: clean:
$(RM) -r trash $(RM) -r 'trash directory'
# we can test NO_OPTIMIZE_COMMITS independently of LC_ALL # we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
full-svn-test: full-svn-test:

View File

@ -123,7 +123,7 @@ This test harness library does the following things:
(or -h), it shows the test_description and exits. (or -h), it shows the test_description and exits.
- Creates an empty test directory with an empty .git/objects - Creates an empty test directory with an empty .git/objects
database and chdir(2) into it. This directory is 't/trash' database and chdir(2) into it. This directory is 't/trash directory'
if you must know, but I do not think you care. if you must know, but I do not think you care.
- Defines standard test helper functions for your scripts to - Defines standard test helper functions for your scripts to

View File

@ -368,7 +368,7 @@ test_done () {
case "$test_failure" in case "$test_failure" in
0) 0)
# We could: # We could:
# cd .. && rm -fr trash # cd .. && rm -fr 'trash directory'
# but that means we forbid any tests that use their own # but that means we forbid any tests that use their own
# subdirectory from calling test_done without coming back # subdirectory from calling test_done without coming back
# to where they started from. # to where they started from.