-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
113 additions
and
82 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# See also | ||
|
||
* https://carstein.github.io/fuzzing/2020/04/18/writing-simple-fuzzer-1.html | ||
* https://carstein.github.io/fuzzing/2020/04/25/writing-simple-fuzzer-2.html | ||
* https://carstein.github.io/fuzzing/2020/05/02/writing-simple-fuzzer-3.html | ||
* https://carstein.github.io/fuzzing/2020/05/21/writing-simple-fuzzer-4.html | ||
|
||
* [How Antithesis finds bugs (with help from the Super Mario | ||
Bros)](https://antithesis.com/blog/sdtalk/) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Todo | ||
|
||
* Don't rerun all commands for every newly generate command | ||
+ only reset the system when shrinking | ||
|
||
* Problem of strategy (pick something as basis for progress): coverage, logs, | ||
value of shared memory, helps bootstap the process. Generalise to support more? | ||
|
||
* Problem of tactics: picking a good input distributed for the testing problem | ||
at hand. Make previous input influence the next input? Dependent events, e.g. | ||
if one packet gets lost, there's a higher chance that the next packet will be | ||
lost as well. | ||
|
||
* More realistic example, e.g.: leader election, transaction rollback, | ||
failover? | ||
* Annoying to sprinkle sometimes assertions everywhere? | ||
- Can it be combined with logging or tracing? | ||
|
||
* Use size parameter to implement AFL heuristic for choosing integers? Or just | ||
use `frequency`? | ||
|
||
* Type-generic mutation? | ||
* sometimes_each? | ||
* https://en.wikipedia.org/wiki/L%C3%A9vy_flight (optimises search) | ||
|
||
|
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