p7000: add test for filter-branch with --prune-empty

Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Devin J. Pohly 2017-02-23 02:27:36 -06:00 committed by Junio C Hamano
parent a582a82d24
commit 32da7467eb

View file

@ -16,4 +16,9 @@ test_perf 'noop filter' '
git filter-branch -f base..HEAD
'
test_perf 'noop prune-empty' '
git checkout --detach tip &&
git filter-branch -f --prune-empty base..HEAD
'
test_done