From 5a4a088add3bdcbe86ae7e87964ce4025ddbc389 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 21 Aug 2008 09:49:12 +0200 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- t/test-lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.11.4.GIT