diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-04 22:12:54 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-04 22:12:54 -0800 |
commit | d2af455f9ff88e9c2f4540e1635d215207e2dbc2 (patch) | |
tree | fa0659f7a63cdc76e9a827ceea226abe79007c91 /Makefile | |
parent | 627467cdf275a4aec20f966cde126833ba41f3ec (diff) |
Improved fuzztest target.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ operf: $(PROG) fuzztest: for i in `seq 1 10`; do \ - time cat /dev/urandom | head -c 100000 | iconv -f latin1 -t utf-8 | $(PROG) >/dev/null; done + time cat /dev/urandom | head -c 500000 | iconv -f latin1 -t utf-8 | tee fuzz-$$i.txt | $(PROG) > /dev/null && rm fuzz-$$i.txt ; done $(SITE)/index.html: spec.txt ./make_site_index.sh $(SPECVERSION) | \ |