]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/commit.c
commit-graph: define GIT_TEST_COMMIT_GRAPH
authorDerrick Stolee <dstolee@microsoft.com>
Wed, 29 Aug 2018 12:49:04 +0000 (05:49 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 29 Aug 2018 17:44:31 +0000 (10:44 -0700)
commit859fdc0c3cf9ad8cdd5eacaa24aee481bc1e7bc1
tree063d8ea29a7ed706089786f20eab27de175e2db8
parent2f743933341f276111103550fbf383a34dfcfd38
commit-graph: define GIT_TEST_COMMIT_GRAPH

The commit-graph feature is tested in isolation by
t5318-commit-graph.sh and t6600-test-reach.sh, but there are many
more interesting scenarios involving commit walks. Many of these
scenarios are covered by the existing test suite, but we need to
maintain coverage when the optional commit-graph structure is not
present.

To allow running the full test suite with the commit-graph present,
add a new test environment variable, GIT_TEST_COMMIT_GRAPH. Similar
to GIT_TEST_SPLIT_INDEX, this variable makes every Git command try
to load the commit-graph when parsing commits, and writes the
commit-graph file after every 'git commit' command.

There are a few tests that rely on commits not existing in
pack-files to trigger important events, so manually set
GIT_TEST_COMMIT_GRAPH to false for the necessary commands.

There is one test in t6024-recursive-merge.sh that relies on the
merge-base algorithm picking one of two ambiguous merge-bases, and
the commit-graph feature changes which merge-base is picked.

Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c
commit-graph.c
commit-graph.h
t/README
t/t0410-partial-clone.sh
t/t5307-pack-missing-commit.sh
t/t6011-rev-list-with-bad-commit.sh
t/t6024-recursive-merge.sh