Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/natemcintosh/fuzztest
What would a basic fuzzing library look like in Julia?
https://github.com/natemcintosh/fuzztest
fuzzing julia julia-language julialang testing
Last synced: 5 days ago
JSON representation
What would a basic fuzzing library look like in Julia?
- Host: GitHub
- URL: https://github.com/natemcintosh/fuzztest
- Owner: natemcintosh
- Created: 2023-02-04T17:50:24.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-04T22:11:22.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T06:26:00.935Z (5 days ago)
- Topics: fuzzing, julia, julia-language, julialang, testing
- Language: Julia
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FuzzTest
What would a basic fuzzing library look like in Julia?Right now, the only utility supported by this tool is calling `rand` on the given types. This means that if
`rand` doesn't know how to randomly sample a type, e.g. `String`, this tool will not work. It also means that
running it on `Float`s will only produce numbers in the range $[0,1)$. Future work will expand this.## Use Cases
When would fuzzing be useful?
- If you are looking for inputs that crash your function
- If you want to make sure that a certain property is satisfied by your function