You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
383 B

  1. gen_query_parser:
  2. go get -u -v github.com/pointlander/peg
  3. peg -inline -switch query.peg
  4. fuzzy_test:
  5. go get -u -v github.com/dvyukov/go-fuzz/go-fuzz
  6. go get -u -v github.com/dvyukov/go-fuzz/go-fuzz-build
  7. go-fuzz-build github.com/tendermint/tendermint/libs/pubsub/query/fuzz_test
  8. go-fuzz -bin=./fuzz_test-fuzz.zip -workdir=./fuzz_test/output
  9. .PHONY: gen_query_parser fuzzy_test