summaryrefslogtreecommitdiff
path: root/t/perf/p4209-pickaxe.sh
blob: f585a4465aebf4e7d2006687304332069fccef6c (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/sh
 
test_description="Test pickaxe performance"
 
. ./perf-lib.sh
 
test_perf_default_repo
 
# Not --max-count, as that's the number of matching commit, so it's
# unbounded. We want to limit our revision walk here.
from_rev_desc=
from_rev=
max_count=1000
if test_have_prereq EXPENSIVE
then
	max_count=10000
fi
from_rev=" $(git rev-list HEAD | head -n $max_count | tail -n 1).."
from_rev_desc=" <limit-rev>.."
 
for icase in \
	'' \
	'-i '
do
	# -S (no regex)
	for pattern in \
		'int main' \
		'æ'
	do
		for opts in \
			'-S'
		do
			test_perf "git log $icase$opts'$pattern'$from_rev_desc" "
				git log --pretty=format:%H $icase$opts'$pattern'$from_rev
			"
		done
	done
 
	# -S (regex)
	for pattern in  \
		'(int|void|null)' \
		'if *\([^ ]+ & ' \
		'[àáâãäåæñøùúûüýþ]'
	do
		for opts in \
			'--pickaxe-regex -S'
		do
			test_perf "git log $icase$opts'$pattern'$from_rev_desc" "
				git log --pretty=format:%H $icase$opts'$pattern'$from_rev
			"
		done
	done
 
	# -G
	for pattern in  \
		'(int|void|null)' \
		'if *\([^ ]+ & ' \
		'[àáâãäåæñøùúûüýþ]'
	do
		for opts in \
			'-G'
		do
			test_perf "git log $icase$opts'$pattern'$from_rev_desc" "
				git log --pretty=format:%H $icase$opts'$pattern'$from_rev
			"
		done
	done
done
 
test_done