summaryrefslogtreecommitdiff
path: root/t/t1600-index.sh
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder.dev@gmail.com>2021-08-26 21:00:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-09-08 06:23:47 (GMT)
commitdaad41c96dd125bf2a667b24c334edcaede3dae5 (patch)
treee241e5084981c0db6e2168ab8f3232e6fbc8fd3c /t/t1600-index.sh
parentbdfe1f0d691a14f187c2f74f3731457977a9759e (diff)
downloadgit-daad41c96dd125bf2a667b24c334edcaede3dae5.zip
git-daad41c96dd125bf2a667b24c334edcaede3dae5.tar.gz
git-daad41c96dd125bf2a667b24c334edcaede3dae5.tar.bz2
t1600-index: disable GIT_TEST_SPLIT_INDEX
Tests in 't1600-index.sh' check that various bogus index version values are recognized and an appropriate warning message is issued. GIT_TEST_SPLIT_INDEX=1 is supposed to trigger index splitting randomly, and thus might interfere [1] with these tests: splitting the index means that two index files are written (the shared base index and the split '.git/index'), and the same warning message is then issued twice, failing these tests. Unset GIT_TEST_SPLIT_INDEX in this test script to avoid such interference. [1] There is no such interference at the moment, because, alas, GIT_TEST_SPLIT_INDEX=1 is broken and never split the index. There was no such interference in the past (before it broke) either, because the first index write with GIT_TEST_SPLIT_INDEX=1 never split the index, only the second write did. A subsequent commit fixing GIT_TEST_SPLIT_INDEX will have all the details on this. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Acked-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1600-index.sh')
-rwxr-xr-xt/t1600-index.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t1600-index.sh b/t/t1600-index.sh
index aa88fc3..46329c4 100755
--- a/t/t1600-index.sh
+++ b/t/t1600-index.sh
@@ -4,6 +4,8 @@ test_description='index file specific tests'
. ./test-lib.sh
+sane_unset GIT_TEST_SPLIT_INDEX
+
test_expect_success 'setup' '
echo 1 >a
'