You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Naturally, this is conditional on the same operation run twice returning the sam
32
32
1. Clone this repository, run `make`; this will build libdiffuzz.so
33
33
1. Make sure [this code](https://gist.github.com/Shnatsel/0c024a51b64c6e0b6c6e66f991904816) doesn't reliably crash when run on its own, but does crash when you run it like this: `LD_PRELOAD=/path/to/libdiffuzz.so target/release/membleed`
34
34
1. If you haven't done regular fuzzing yet - do set up fuzzing with AFL. [It's not that hard.](https://fuzz.rs/book/afl/setup.html)
35
-
1. In your fuzz target run the same operation twice and `assert!` that they produce the same result. **TODO:**example
35
+
1. In your fuzz target run the same operation twice and `assert!` that they produce the same result. See [example code for Claxon](https://github.com/Shnatsel/claxon-differential-fuzzing) for reference.
36
36
1. Add the following to your fuzz harness:
37
37
```rust
38
38
// Use the system allocator so we can substitute it with a custom one via LD_PRELOAD
0 commit comments