]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t1092: run "rebase --apply" without "-q" in testing
authorPhillip Wood <phillip.wood@dunelm.org.uk>
Sat, 16 Oct 2021 09:07:09 +0000 (09:07 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 18 Oct 2021 16:24:51 +0000 (09:24 -0700)
We run a few operations and make sure they produce identical results
with and without sparse-index; the version we merged to the "next"
branch used the "-q" option to work around a breakage caused by a
version used at Microsoft with some unreleased changes, but since
we would want to make sure the commands produce identical results,
including reports given to the output that lists which commits were
picked, use of "-q" loses too much interesting information.

Let's drop "-q" from the command invocation and revisit the issue
when the problematic changes are upstreamed.

Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Helped-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1092-sparse-checkout-compatibility.sh

index 80c77bb432e22531c0b506ffa14de2afa38087f1..85d5279b33c1d5b9c6255522547d48e4e54df1a2 100755 (executable)
@@ -484,7 +484,7 @@ test_expect_success 'checkout and reset (mixed) [sparse]' '
 test_expect_success 'merge, cherry-pick, and rebase' '
        init_repos &&
 
-       for OPERATION in "merge -m merge" cherry-pick "rebase --apply -q" "rebase --merge"
+       for OPERATION in "merge -m merge" cherry-pick "rebase --apply" "rebase --merge"
        do
                test_all_match git checkout -B temp update-deep &&
                test_all_match git $OPERATION update-folder1 &&