test prerequisites: eradicate NOT_FOO
[gitweb.git] / t / t6000-rev-list-misc.sh
index 9ad4971f8109f703b812580df3bb5cb3e37d5ddd..3794e4ceafc291be5621411f3cad7bf5ef764942 100755 (executable)
@@ -62,4 +62,15 @@ test_expect_success 'propagate uninteresting flag down correctly' '
        test_cmp expect actual
 '
 
+test_expect_success 'symleft flag bit is propagated down from tag' '
+       git log --format="%m %s" --left-right v1.0...master >actual &&
+       cat >expect <<-\EOF &&
+       > two
+       > one
+       < another
+       < that
+       EOF
+       test_cmp expect actual
+'
+
 test_done