summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-11-17 11:02:53 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-11-17 11:03:05 -0800
commit83ef1391dca33815c18965e585cf30335bf23e6f (patch)
tree8e5561d126a161e9d4cfeb1d909ae27d5461cb75 /Makefile
parenta595d4a6d1cb0cccaa0d198939eff172b48c99c8 (diff)
'make bench': Use larger benchmark file, fewer runs.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 25d691c..0f227ee 100644
--- a/Makefile
+++ b/Makefile
@@ -116,7 +116,7 @@ fuzztest:
# for benchmarking
benchmark.md: progit/progit.md
- -rm $@; for x in `seq 1 20` ; do cat $< >> $@; done
+ -rm $@; for x in `seq 1 40` ; do cat $< >> $@; done
progit:
git clone https://github.com/progit/progit.git
@@ -126,7 +126,7 @@ progit/progit.md: progit
bench: benchmark.md
{ sudo renice 99 $$$$; \
- for x in `seq 1 20` ; do \
+ for x in `seq 1 10` ; do \
/usr/bin/env time -p ${PROG} $< >/dev/null ; \
done \
} 2>&1 | grep 'real' |\