"Derrick Stolee via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Derrick Stolee <dstolee@xxxxxxxxxxxxx> > > The sparse index will be compatible with the ORT merge strategy, so > let's use it explicitly in our tests. Unless you mean that the sparse index will only be compatible with ort, but will never be with recursive, I do not quite see why this is taking us into a good direction. Is this because we want to gain test coverage for ort early, before we flip the default to ort [*1*]? [Footnote] *1* If the answer is "no, it is because sparse index will not work with recursive", the please disregard the rest, but just in case it is not... It seems to me that it would let us live in the future in a more comprehensive way if we tweaked merge_recursive() and/or merge_recursive_generic() so that all internal callers, not just builtin/merge.c, would redirect to the ort machinery when say GIT_TEST_REPLACE_RECURSIVE_WITH_ORT environment exists, and doing it that way we do not need to sprinkle "-srecursive" and "-sort" everywhere in our tests at randomly chosen places to give test coverage to both strategies. > Signed-off-by: Derrick Stolee <dstolee@xxxxxxxxxxxxx> > --- > t/t1092-sparse-checkout-compatibility.sh | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/t/t1092-sparse-checkout-compatibility.sh b/t/t1092-sparse-checkout-compatibility.sh > index ddc86bb4152..3e01e70fa0b 100755 > --- a/t/t1092-sparse-checkout-compatibility.sh > +++ b/t/t1092-sparse-checkout-compatibility.sh > @@ -7,6 +7,11 @@ GIT_TEST_SPARSE_INDEX= > > . ./test-lib.sh > > +# Force the use of the ORT merge algorithm until testing with the > +# recursive strategy. We expect ORT to be used with sparse-index. > +GIT_TEST_MERGE_ALGORITHM=ort > +export GIT_TEST_MERGE_ALGORITHM > + > test_expect_success 'setup' ' > git init initial-repo && > ( > @@ -501,7 +506,7 @@ test_expect_success 'merge with conflict outside cone' ' > > test_all_match git checkout -b merge-tip merge-left && > test_all_match git status --porcelain=v2 && > - test_all_match test_must_fail git merge -m merge merge-right && > + test_all_match test_must_fail git merge -sort -m merge merge-right && > test_all_match git status --porcelain=v2 && > > # Resolve the conflict in different ways: > @@ -531,7 +536,7 @@ test_expect_success 'merge with outside renames' ' > do > test_all_match git reset --hard && > test_all_match git checkout -f -b merge-$type update-deep && > - test_all_match git merge -m "$type" rename-$type && > + test_all_match git merge -sort -m "$type" rename-$type && > test_all_match git rev-parse HEAD^{tree} || return 1 > done > '