revision.c: Make --full-history consider more merges
[gitweb.git] / t / t6019-rev-list-ancestry-path.sh
index 5287f6af32766130df8a0df404218fc45fdaa592..5ad96e3320470d885e01b5987864f330c5e347f2 100755 (executable)
@@ -16,6 +16,9 @@ test_description='--ancestry-path'
 #
 #  F...I                 == F G H I
 #  --ancestry-path F...I == F H I
+#
+#  G..M -- G.t                 == [nothing - was dropped in "-s ours" merge L]
+#  --ancestry-path G..M -- G.t == H J L
 
 . ./test-lib.sh
 
@@ -81,7 +84,7 @@ test_expect_success 'rev-list F...I' '
        test_cmp expect actual
 '
 
-test_expect_failure 'rev-list --ancestry-path F...I' '
+test_expect_success 'rev-list --ancestry-path F...I' '
        for c in F H I; do echo $c; done >expect &&
        git rev-list --ancestry-path --format=%s F...I |
        sed -e "/^commit /d" |
@@ -89,6 +92,22 @@ test_expect_failure 'rev-list --ancestry-path F...I' '
        test_cmp expect actual
 '
 
+# G.t is dropped in an "-s ours" merge
+test_expect_success 'rev-list G..M -- G.t' '
+       >expect &&
+       git rev-list --format=%s G..M -- G.t |
+       sed -e "/^commit /d" >actual &&
+       test_cmp expect actual
+'
+
+test_expect_success 'rev-list --ancestry-path G..M -- G.t' '
+       for c in H J L; do echo $c; done >expect &&
+       git rev-list --ancestry-path --format=%s G..M -- G.t |
+       sed -e "/^commit /d" |
+       sort >actual &&
+       test_cmp expect actual
+'
+
 #   b---bc
 #  / \ /
 # a   X