summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorKarsten Blees <karsten.blees@gmail.com>2014-07-12 00:03:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-07-14 04:25:19 (GMT)
commit124647c4b007eff04144d75042d9d95f63e303f7 (patch)
treee63a8203700ce48fc39d780675ebaac879c92449 /t
parentc69dfd24db21be54ec5a17bb3e07c81f4e96861a (diff)
downloadgit-124647c4b007eff04144d75042d9d95f63e303f7.zip
git-124647c4b007eff04144d75042d9d95f63e303f7.tar.gz
git-124647c4b007eff04144d75042d9d95f63e303f7.tar.bz2
trace: disable additional trace output for unit tests
Some unit-tests use trace output to verify internal state, and unstable output such as timestamps and line numbers are not useful there. Disable additional trace output if GIT_TRACE_BARE is set. Signed-off-by: Karsten Blees <blees@dcon.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r--t/test-lib.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 81394c8..e37da5a 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -109,6 +109,10 @@ export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
export EDITOR
+# Tests using GIT_TRACE typically don't want <timestamp> <file>:<line> output
+GIT_TRACE_BARE=1
+export GIT_TRACE_BARE
+
if test -n "${TEST_GIT_INDEX_VERSION:+isset}"
then
GIT_INDEX_VERSION="$TEST_GIT_INDEX_VERSION"