OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / tendermint / tmlibs / pubsub / query / Makefile
1 gen_query_parser:
2         @go get github.com/pointlander/peg
3         peg -inline -switch query.peg
4
5 fuzzy_test:
6         @go get github.com/dvyukov/go-fuzz/go-fuzz
7         @go get github.com/dvyukov/go-fuzz/go-fuzz-build
8         go-fuzz-build github.com/tendermint/tmlibs/pubsub/query/fuzz_test
9         go-fuzz -bin=./fuzz_test-fuzz.zip -workdir=./fuzz_test/output
10
11 .PHONY: gen_query_parser fuzzy_test