diff options
author | Ben Peart <benpeart@microsoft.com> | 2018-09-19 01:29:37 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-09-28 20:41:01 +0200 |
commit | 5765d97b71d7489f927354e1704fc0d1d7ef90a0 (patch) | |
tree | 3a70266eea5461b3295bf83805c6bb676f164bbf /t/t7519-status-fsmonitor.sh | |
parent | read-cache: update TEST_GIT_INDEX_VERSION support (diff) | |
download | git-5765d97b71d7489f927354e1704fc0d1d7ef90a0.tar.xz git-5765d97b71d7489f927354e1704fc0d1d7ef90a0.zip |
preload-index: update GIT_FORCE_PRELOAD_TEST support
Rename GIT_FORCE_PRELOAD_TEST to GIT_TEST_PRELOAD_INDEX for consistency with
the other GIT_TEST_ special setups and properly document its use.
Add logic in t/test-lib.sh to give a warning when the old variable is set to
let people know they need to update their environment to use the new
variable.
Signed-off-by: Ben Peart <Ben.Peart@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7519-status-fsmonitor.sh')
-rwxr-xr-x | t/t7519-status-fsmonitor.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7519-status-fsmonitor.sh b/t/t7519-status-fsmonitor.sh index 06f59822e4..3f0dd98010 100755 --- a/t/t7519-status-fsmonitor.sh +++ b/t/t7519-status-fsmonitor.sh @@ -238,9 +238,9 @@ do git config core.preloadIndex $preload_val && if test $preload_val = true then - GIT_FORCE_PRELOAD_TEST=$preload_val; export GIT_FORCE_PRELOAD_TEST + GIT_TEST_PRELOAD_INDEX=$preload_val; export GIT_TEST_PRELOAD_INDEX else - unset GIT_FORCE_PRELOAD_TEST + sane_unset GIT_TEST_PRELOAD_INDEX fi ' |