3 test_description
='test log -L'
6 test_expect_success
'setup (import history)' '
7 git fast-import < "$TEST_DIRECTORY"/t4211/history.export &&
14 test_cmp \"\$TEST_DIRECTORY\"/t4211/expect.$3 actual
19 canned_test_1 success
"$@"
21 canned_test_failure
() {
22 canned_test_1 failure
"$@"
26 test_expect_success
"invalid args: $1" "
27 test_must_fail git log $1 2>errors &&
32 canned_test
"-L 4,12:a.c simple" simple-f
33 canned_test
"-L 4,+9:a.c simple" simple-f
34 canned_test
"-L '/long f/,/^}/:a.c' simple" simple-f
35 canned_test
"-L :f:a.c simple" simple-f-to-main
37 canned_test
"-L '/main/,/^}/:a.c' simple" simple-main
38 canned_test
"-L :main:a.c simple" simple-main-to-end
40 canned_test
"-L 1,+4:a.c simple" beginning-of-file
42 canned_test
"-L 20:a.c simple" end-of-file
44 canned_test
"-L '/long f/',/^}/:a.c -L /main/,/^}/:a.c simple" two-ranges
45 canned_test
"-L 24,+1:a.c simple" vanishes-early
47 canned_test
"-M -L '/long f/,/^}/:b.c' move-support" move-support-f
48 canned_test
"-M -L ':f:b.c' parallel-change" parallel-change-f-to-main
50 canned_test
"-L 4,12:a.c -L :main:a.c simple" multiple
51 canned_test
"-L 4,18:a.c -L ^:main:a.c simple" multiple-overlapping
52 canned_test
"-L :main:a.c -L 4,18:a.c simple" multiple-overlapping
53 canned_test
"-L 4:a.c -L 8,12:a.c simple" multiple-superset
54 canned_test
"-L 8,12:a.c -L 4:a.c simple" multiple-superset
56 test_bad_opts
"-L" "switch.*requires a value"
57 test_bad_opts
"-L b.c" "argument.*not of the form"
58 test_bad_opts
"-L 1:" "argument.*not of the form"
59 test_bad_opts
"-L 1:nonexistent" "There is no path"
60 test_bad_opts
"-L 1:simple" "There is no path"
61 test_bad_opts
"-L '/foo:b.c'" "argument.*not of the form"
62 test_bad_opts
"-L 1000:b.c" "has only.*lines"
63 test_bad_opts
"-L 1,1000:b.c" "has only.*lines"
64 test_bad_opts
"-L :b.c" "argument.*not of the form"
65 test_bad_opts
"-L :foo:b.c" "no match"
67 test_expect_success
'-L X (X == nlines)' '
72 test_expect_success
'-L X (X == nlines + 1)' '
73 n=$(expr $(wc -l <b.c) + 1) &&
74 test_must_fail git log -L $n:b.c
77 test_expect_success
'-L X (X == nlines + 2)' '
78 n=$(expr $(wc -l <b.c) + 2) &&
79 test_must_fail git log -L $n:b.c
82 test_expect_success
'-L ,Y (Y == nlines)' '
83 n=$(printf "%d" $(wc -l <b.c)) &&
87 test_expect_success
'-L ,Y (Y == nlines + 1)' '
88 n=$(expr $(wc -l <b.c) + 1) &&
89 test_must_fail git log -L ,$n:b.c
92 test_expect_success
'-L ,Y (Y == nlines + 2)' '
93 n=$(expr $(wc -l <b.c) + 2) &&
94 test_must_fail git log -L ,$n:b.c