aboutsummaryrefslogtreecommitdiff
path: root/t/t1510-repo-setup.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-02-24 09:30:30 -0500
committerJunio C Hamano <gitster@pobox.com>2011-03-08 12:12:04 -0800
commit7e2342d0987f7f78bc8582e97bbfbafd80d327ef (patch)
tree06e7af5004f763ee8b64879d83d5dc1e514fb24f /t/t1510-repo-setup.sh
parentbbc30f996380eacd71ca061675d5d0c5f21c45d2 (diff)
downloadgit-7e2342d0987f7f78bc8582e97bbfbafd80d327ef.tar.gz
git-7e2342d0987f7f78bc8582e97bbfbafd80d327ef.tar.xz
trace: give repo_setup trace its own key
You no longer get this output with GIT_TRACE=1; instead, you can do GIT_TRACE_SETUP=1. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1510-repo-setup.sh')
-rwxr-xr-xt/t1510-repo-setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t1510-repo-setup.sh b/t/t1510-repo-setup.sh
index 15101d5e0..ec50a9ad7 100755
--- a/t/t1510-repo-setup.sh
+++ b/t/t1510-repo-setup.sh
@@ -57,7 +57,7 @@ test_repo () {
export GIT_WORK_TREE
fi &&
rm -f trace &&
- GIT_TRACE="$(pwd)/trace" git symbolic-ref HEAD >/dev/null &&
+ GIT_TRACE_SETUP="$(pwd)/trace" git symbolic-ref HEAD >/dev/null &&
grep '^setup: ' trace >result &&
test_cmp expected result
)