From 32da7467ebc099e6032590773827884b704980cf Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Thu, 23 Feb 2017 02:27:36 -0600 Subject: [PATCH] p7000: add test for filter-branch with --prune-empty Signed-off-by: Devin J. Pohly Signed-off-by: Junio C Hamano --- t/perf/p7000-filter-branch.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/t/perf/p7000-filter-branch.sh b/t/perf/p7000-filter-branch.sh index 15ee5d1d53..b029586ccb 100755 --- a/t/perf/p7000-filter-branch.sh +++ b/t/perf/p7000-filter-branch.sh @@ -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