]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t7064-wtstatus-pv2.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t7064-wtstatus-pv2.sh
index 11eccc231a792b77fe5e95d11b6ceaad83fda3d9..537787e598b414886316d497c0076d517a654be8 100755 (executable)
@@ -445,6 +445,14 @@ test_expect_success 'verify --[no-]ahead-behind with V2 format' '
                EOF
 
                git status --ahead-behind --porcelain=v2 --branch --untracked-files=all >actual &&
+               test_cmp expect actual &&
+
+               # Confirm that "status.aheadbehind" DOES NOT work on V2 format.
+               git -c status.aheadbehind=false status --porcelain=v2 --branch --untracked-files=all >actual &&
+               test_cmp expect actual &&
+
+               # Confirm that "status.aheadbehind" DOES NOT work on V2 format.
+               git -c status.aheadbehind=true status --porcelain=v2 --branch --untracked-files=all >actual &&
                test_cmp expect actual
        )
 '