rustls/fuzz
Daniel McCarney 18f42bba16 fuzz: fix unused Result clippy finding.
```
warning: unused `std::result::Result` that must be used
  --> fuzzers/persist.rs:14:5
   |
14 |     T::read(&mut rdr);
   |     ^^^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(unused_must_use)]` on by default
   = note: this `Result` may be an `Err` variant, which should be handled
```
2023-03-20 16:08:55 +01:00
..
corpus Invalid SessionID in ServerHelloPayload. 2021-04-15 10:12:54 +02:00
fuzzers fuzz: fix unused Result clippy finding. 2023-03-20 16:08:55 +01:00
.gitignore Add cargo-fuzz support 2017-05-09 00:12:42 +01:00
Cargo.toml deframer: join handshake messages in deframer buffer 2023-01-17 21:17:13 +01:00
README.md docs: add small README for fuzz testing suite. 2023-03-03 19:08:13 +01:00

README.md

Fuzz Testing

Rustls supports fuzz testing using cargo-fuzz. Fuzz tests are automatically run during continuous integration using oss-fuzz. You may also run fuzz tests locally. See the cargo-fuzz setup instructions for requirements.

# List available fuzzing targets.
$ cargo fuzz list
client
deframer
fragment
message
persist
servert

# Run the message fuzz target for a fixed period of time (expressed in seconds).
$ cargo fuzz run message -- -max_total_time=120

# Clean up generated corpus files
git clean --interactive -- ./corpus