summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2019-10-24 13:34:02 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2019-10-24 13:34:03 +0900
commit4d6fb2beeb80f4899b0267d91c983c91772438f0 (patch)
tree793d62db0b61f862d9cfcefe47de213cb1c1da57 /t
parentMerge branch 'js/azure-ci-osx-fix' (diff)
parentrepo-settings: read an int for index.version (diff)
downloadtgif-4d6fb2beeb80f4899b0267d91c983c91772438f0.tar.xz
Merge branch 'ds/feature-macros'
The codepath that reads the index.version configuration was broken with a recent update, which has been corrected. * ds/feature-macros: repo-settings: read an int for index.version
Diffstat (limited to 't')
-rwxr-xr-xt/t1600-index.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t1600-index.sh b/t/t1600-index.sh
index c77721b580..b7c31aa86a 100755
--- a/t/t1600-index.sh
+++ b/t/t1600-index.sh
@@ -87,6 +87,10 @@ test_index_version () {
}
test_expect_success 'index version config precedence' '
+ test_index_version 0 false 0 2 &&
+ test_index_version 2 false 0 2 &&
+ test_index_version 3 false 0 2 &&
+ test_index_version 4 false 0 4 &&
test_index_version 2 false 4 4 &&
test_index_version 2 true 0 2 &&
test_index_version 0 true 0 4 &&