Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> --- t/t0014-abbrev.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/t/t0014-abbrev.sh b/t/t0014-abbrev.sh index 934c54a96b..d8b060d922 100755 --- a/t/t0014-abbrev.sh +++ b/t/t0014-abbrev.sh @@ -168,4 +168,14 @@ do " done +for i in $(test_seq 4 40) +do + test_expect_success "branch core.abbrev=$i and --abbrev=$i" " + git -c core.abbrev=$i branch -v | cut_tr_d_n_field_n 3 >branch && + test_byte_count = $i branch && + git branch --abbrev=$i -v | cut_tr_d_n_field_n 3 >branch && + test_byte_count = $i branch + " +done + test_done -- 2.17.0.290.gded63e768a