From 67da08d731665d7a36de52ae237d58891c0ee8c0 Mon Sep 17 00:00:00 2001 From: thepudds <20628140+thepudds@users.noreply.github.com> Date: Sun, 21 Jan 2024 13:50:46 -0500 Subject: [PATCH] README: link to '-chain' example in the Quickstart section --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8f2b47a..785c376 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,8 @@ fuzz: elapsed: 0s, minimizing Without any manual work, you just found a bug in the standard library. (It's a very minor bug though — probably at the level of "perhaps the doc could be more explicit about an expected panic"). +A more complex calling sequence is possible via the `-chain` flag, which allows automatic looping over the methods of an object, including automatically passing outputs of one method as input to another method. [See below](https://github.com/thepudds/fzgen#example-easily-finding-a-data-race) for an example use of `-chain`. + That's enough for you to get started on your own, but let's also briefly look at a more interesting example. ## What Do Some Fuzzing Targets Look Like?