1#!/bin/sh
23
test_description='Tests the performance of various pretty format placeholders'
45
. ./perf-lib.sh
67
test_perf_default_repo
89
for format in %H %h %T %t %P %p %h-%h-%h
10do
11test_perf "log with $format" "
12git log --format=\"$format\" >/dev/null
13"
14done
1516
test_done