cmark

My personal build of CMark ✏️

Commit
4a3320a75c7eaf2f3f5451ab0bc0ef4e3f2e1554
Parent
9989d80d3b1e9d30c92034164108de4590b7ddb9
Author
John MacFarlane <jgm@berkeley.edu>
Date

bench target: Added BENCHPATT.

Diffstat

1 file changed, 2 insertions, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified Makefile 3 2 1
diff --git 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")))'