t4211: demonstrate empty -L range crash
[gitweb.git] / t / t4211-line-log.sh
index 7776f93e3dfe1b6f822d5ee6f206bed5ba38c75c..9042178124d0bdc1246e3d9862fc72cc5d406a2b 100755 (executable)
@@ -64,4 +64,12 @@ test_bad_opts "-L 1,1000:b.c" "has only.*lines"
 test_bad_opts "-L :b.c" "argument.*not of the form"
 test_bad_opts "-L :foo:b.c" "no match"
 
+# There is a separate bug when an empty -L range is the first -L encountered,
+# thus to demonstrate this particular bug, the empty -L range must follow a
+# non-empty -L range.
+test_expect_failure '-L {empty-range} (any -L)' '
+       n=$(expr $(wc -l <b.c) + 1) &&
+       git log -L1,1:b.c -L$n:b.c
+'
+
 test_done