blob: b029586ccb2c8b3fd746a6c0bbdaca3966d42fa7 [file] [log] [blame]
Jeff King348d4f22015-11-06 01:24:29 -05001#!/bin/sh
2
3test_description='performance of filter-branch'
4. ./perf-lib.sh
5
6test_perf_default_repo
7test_checkout_worktree
8
9test_expect_success 'mark bases for tests' '
10 git tag -f tip &&
11 git tag -f base HEAD~100
12'
13
14test_perf 'noop filter' '
15 git checkout --detach tip &&
16 git filter-branch -f base..HEAD
17'
18
Devin J. Pohly32da7462017-02-23 02:27:36 -060019test_perf 'noop prune-empty' '
20 git checkout --detach tip &&
21 git filter-branch -f --prune-empty base..HEAD
22'
23
Jeff King348d4f22015-11-06 01:24:29 -050024test_done