]> git.ipfire.org Git - thirdparty/git.git/blame - t/perf/p4205-log-pretty-formats.sh
The eighth batch
[thirdparty/git.git] / t / perf / p4205-log-pretty-formats.sh
CommitLineData
5a5bd576
RS
1#!/bin/sh
2
3test_description='Tests the performance of various pretty format placeholders'
4
5. ./perf-lib.sh
6
7test_perf_default_repo
8
018b9deb 9for format in %H %h %T %t %P %p %h-%h-%h %an-%ae-%s
5a5bd576
RS
10do
11 test_perf "log with $format" "
12 git log --format=\"$format\" >/dev/null
13 "
14done
15
16test_done