blame: accept multiple -L ranges
[gitweb.git] / t / annotate-tests.sh
index 22db31e580600aaa951e5b2e3278d2fff3b99aed..ce5b8ed304d1c1374589fc96152eb4f0244e65b9 100644 (file)
@@ -185,6 +185,14 @@ test_expect_success 'blame -L Y,X (undocumented)' '
        check_count -L6,3 B 1 B1 1 B2 1 D 1
 '
 
+test_expect_success 'blame -L ,+0' '
+       test_must_fail $PROG -L,+0 file
+'
+
+test_expect_success 'blame -L X,+0' '
+       test_must_fail $PROG -L1,+0 file
+'
+
 test_expect_success 'blame -L X,+1' '
        check_count -L3,+1 B2 1
 '
@@ -193,6 +201,14 @@ test_expect_success 'blame -L X,+N' '
        check_count -L3,+4 B 1 B1 1 B2 1 D 1
 '
 
+test_expect_success 'blame -L ,-0' '
+       test_must_fail $PROG -L,-0 file
+'
+
+test_expect_success 'blame -L X,-0' '
+       test_must_fail $PROG -L1,-0 file
+'
+
 test_expect_success 'blame -L X,-1' '
        check_count -L3,-1 B2 1
 '
@@ -232,7 +248,7 @@ test_expect_success 'blame -L X (X == nlines)' '
        check_count -L$n C 1
 '
 
-test_expect_failure 'blame -L X (X == nlines + 1)' '
+test_expect_success 'blame -L X (X == nlines + 1)' '
        n=$(expr $(wc -l <file) + 2) &&
        test_must_fail $PROG -L$n file
 '
@@ -321,7 +337,7 @@ test_expect_success 'blame -L 0 empty (undocumented)' '
        check_count -h HEAD^^ -f incremental -L0
 '
 
-test_expect_failure 'blame -L 1 empty' '
+test_expect_success 'blame -L 1 empty' '
        test_must_fail $PROG -L1 incremental HEAD^^
 '
 
@@ -341,7 +357,7 @@ test_expect_success 'blame -L 1 half' '
        check_count -h HEAD^ -f incremental -L1 I 1
 '
 
-test_expect_failure 'blame -L 2 half' '
+test_expect_success 'blame -L 2 half' '
        test_must_fail $PROG -L2 incremental HEAD^
 '
 
@@ -361,7 +377,7 @@ test_expect_success 'blame -L 1 full' '
        check_count -f incremental -L1 I 1
 '
 
-test_expect_failure 'blame -L 2 full' '
+test_expect_success 'blame -L 2 full' '
        test_must_fail $PROG -L2 incremental
 '