summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-12-05 20:52:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-12-05 20:52:48 (GMT)
commite0f9ec90278ec989ac7840a69f42a414f0db23f5 (patch)
treeda196a1d49be6527919614e004f0090a9ffef590 /ci
parentfd952307ec2a260b1ed668d56f1a4cf3569baee3 (diff)
parenta85efb598565718a06e560eb3f1ca038f6f3cd39 (diff)
downloadgit-e0f9ec90278ec989ac7840a69f42a414f0db23f5.zip
git-e0f9ec90278ec989ac7840a69f42a414f0db23f5.tar.gz
git-e0f9ec90278ec989ac7840a69f42a414f0db23f5.tar.bz2
Merge branch 'sg/test-bool-env'
Recently we have declared that GIT_TEST_* variables take the usual boolean values (it used to be that some used "non-empty means true" and taking GIT_TEST_VAR=YesPlease as true); make sure we notice and fail when non-bool strings are given to these variables. * sg/test-bool-env: t5608-clone-2gb.sh: turn GIT_TEST_CLONE_2GB into a bool tests: add 'test_bool_env' to catch non-bool GIT_TEST_* values
Diffstat (limited to 'ci')
-rwxr-xr-xci/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index c8c2c38..5fca043 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -156,7 +156,7 @@ fi
export DEVELOPER=1
export DEFAULT_TEST_TARGET=prove
-export GIT_TEST_CLONE_2GB=YesPlease
+export GIT_TEST_CLONE_2GB=true
case "$jobname" in
linux-clang|linux-gcc)