diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2008-08-21 09:49:12 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-21 23:38:25 -0700 |
commit | 5a4a088add3bdcbe86ae7e87964ce4025ddbc389 (patch) | |
tree | cac72e24477925f52665ace7e4e3375a166c1f64 /t/test-lib.sh | |
parent | provide more errors for the "merge into empty head" case (diff) | |
download | tgif-5a4a088add3bdcbe86ae7e87964ce4025ddbc389.tar.xz |
test-lib: do not remove trash_directory if called with --debug
Sometimes you want to keep the trash directory, even if all tests
passed. For example, when extending tests, it comes it quite handy.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 6212c46cc1..e2b106cb6a 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -491,7 +491,7 @@ fi # Test repository test="trash directory.$(basename "$0" .sh)" -remove_trash="$TEST_DIRECTORY/$test" +test ! -z "$debug" || remove_trash="$TEST_DIRECTORY/$test" rm -fr "$test" || { trap - exit echo >&5 "FATAL: Cannot prepare test area" |