-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: comprehensive fuzzing for BTreeMap (#143)
Adds a fuzz test that can run indefinitely comparing the results of a stable BTreeMap to a standard BTreeMap. I ended up using `proptest` rather than the conventional `cargo fuzz` for two reasons: 1. `cargo fuzz` requires nightly rust. 2. With proptest, we can have a short version of the fuzz test that runs as part of CI (which is included in this commit).
- Loading branch information
Showing
2 changed files
with
140 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters