From 4a3320a75c7eaf2f3f5451ab0bc0ef4e3f2e1554 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 15 Nov 2014 21:22:30 -0800 Subject: bench target: Added BENCHPATT. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8cf34f6..0a9ce88 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ SPECVERSION=$(shell perl -ne 'print $$1 if /^version: *([0-9.]+)/' $(SPEC)) PKGDIR?=cmark-$(SPECVERSION) TARBALL?=cmark-$(SPECVERSION).tar.gz FUZZCHARS?=2000000 # for fuzztest +BENCHPATT?="processing lines" # for bench PROG?=$(BUILDDIR)/src/cmark BENCHINP?=README.md JSMODULES=$(wildcard js/lib/*.js) @@ -95,7 +96,7 @@ bench: { for x in `seq 1 100` ; do \ /usr/bin/env time -p ${PROG} progit.md >/dev/null ; \ done \ - } 2>&1 | grep 'processing lines' | \ + } 2>&1 | grep ${BENCHPATT} | \ awk '{print $$3;}' | \ Rscript -e 'summary (as.numeric (readLines ("stdin")))' -- cgit v1.2.3