ci: exercise the whole test suite with uncommon code in pack-objects

Some recent optimizations have been added to pack-objects to reduce memory usage and some code paths are split into two: one for common use cases and one for rare ones. Make sure the rare cases are tested with Travis since it requires manual test configuration that is unlikely to be done by developers. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Nguyễn Thái Ngọc Duy committed Apr 14, 2018 at 17:35 UTC f6a5576d521693963092dd69355d8e96ecd73635
1 file changed +4 -1
ci/run-build-and-tests.sh
+4 -1
@@ -11,7 +11,10 @@ make --jobs=2
11 make --quiet test
12 if test "$jobname" = "linux-gcc"
13 then
14 - GIT_TEST_SPLIT_INDEX=yes make --quiet test
14 + export GIT_TEST_SPLIT_INDEX=yes
15 + export GIT_TEST_FULL_IN_PACK_ARRAY=true
16 + export GIT_TEST_OE_SIZE=10
17 + make --quiet test
18 fi
19
20 check_unignored_build_artifacts