summaryrefslogtreecommitdiff
path: root/t/perf/p5304-prune.sh
blob: 3c852084eb4330710c8b51ce4ac42fdc1dbca430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

test_description='performance tests of prune'
. ./perf-lib.sh

test_perf_default_repo

test_expect_success 'remove reachable loose objects' '
	git repack -ad
'

test_expect_success 'remove unreachable loose objects' '
	git prune
'

test_expect_success 'confirm there are no loose objects' '
	git count-objects | grep ^0
'

test_perf 'prune with no objects' '
	git prune
'

test_done