Skip to content

Commit f6a5576

Browse files
pcloudsgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3b13a5f commit f6a5576

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/run-build-and-tests.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ make --jobs=2
1111
make --quiet test
1212
if test "$jobname" = "linux-gcc"
1313
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
1518
fi
1619

1720
check_unignored_build_artifacts

0 commit comments

Comments
 (0)