Closed stonebrakert6 closed 1 year ago
I would be interested to know what specific features you have in mind here.
FWIW, the FuzzTest framework is already built using Bazel and FuzzTests are written as first-class cc_test
rules (see codelab example), with support to auto-generate .bazelrc configs.
Thanks @stefanbucur - I wasn't much familiar with fuzztest when I posted this question(just my impatience). I think we can close this? I was exploring options to fuzz test my application back then. I've already integrated my application with fuzztest for fuzzing and I'm pretty happy with it. Thanks a lot for your help.
Awesome, glad to hear this!
@stefanbucur I'm curious, are there any advantages of this ruleset above FuzzTest for C++?
Not really - please prefer FuzzTest for fuzz target development. It has many features that the legacy libfuzzer / LLVM interface cannot support, and it is much less dependent on external tooling to support development.
Sorry for the newbie question. Is support for fuzztest, planned in the near future?