diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-01-15 20:50:56 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-15 11:33:39 -0800 |
commit | edb54081ad821f89619df47bce993b9acc1d2234 (patch) | |
tree | 1f99c4ae52d33b7fa977aafb061700e3bde483c0 /t | |
parent | e4f59a32de3f90ff5aabc09b9da6bd5818c5076b (diff) | |
download | git-edb54081ad821f89619df47bce993b9acc1d2234.tar.gz |
test-lib.sh: unfilter GIT_PERF_*
These variables are user parameters to control how to run the perf
tests. Allow users to do so.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-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 f50f8341d4..bf4cf7199c 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -85,7 +85,7 @@ unset VISUAL EMAIL LANGUAGE COLUMNS $("$PERL_PATH" -e ' .*_TEST PROVE VALGRIND - PERF_AGGREGATING_LATER + PERF_ )); my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env); print join("\n", @vars); |