summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2008-05-18 04:03:03 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-05-19 04:39:58 (GMT)
commit9231e3a953c0780846dacdcf3928f6658fa4fad0 (patch)
tree7ad91e22f15e6f1c83f1f4b04fa5e89016fab668 /t
parent2a028a0cabefed8efcf41499e330adfc20f433f8 (diff)
downloadgit-9231e3a953c0780846dacdcf3928f6658fa4fad0.zip
git-9231e3a953c0780846dacdcf3928f6658fa4fad0.tar.gz
git-9231e3a953c0780846dacdcf3928f6658fa4fad0.tar.bz2
t/Makefile: "trash" directory was renamed recently
Signed-off-by: Brandon Casey <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r--t/Makefile2
-rw-r--r--t/README2
-rw-r--r--t/test-lib.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/t/Makefile b/t/Makefile
index 72d7884..c6a60ab 100644
--- a/t/Makefile
+++ b/t/Makefile
@@ -20,7 +20,7 @@ $(T):
@echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
clean:
- $(RM) -r trash
+ $(RM) -r 'trash directory'
# we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
full-svn-test:
diff --git a/t/README b/t/README
index 73ed11b..70841a4 100644
--- a/t/README
+++ b/t/README
@@ -123,7 +123,7 @@ This test harness library does the following things:
(or -h), it shows the test_description and exits.
- 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.
- Defines standard test helper functions for your scripts to
diff --git a/t/test-lib.sh b/t/test-lib.sh
index d1018c9..3bf570b 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -368,7 +368,7 @@ test_done () {
case "$test_failure" in
0)
# We could:
- # cd .. && rm -fr trash
+ # cd .. && rm -fr 'trash directory'
# but that means we forbid any tests that use their own
# subdirectory from calling test_done without coming back
# to where they started from.