-
Normal fuzz tests check that a fuzzer passes the test _every time_ (`∀x: p(x)`).
Sometimes it's helpful to test whether a fuzzer passes the test _at least once_ (`∃x: p(x)`).
API sketch (with bad …
-
Add Karma tests that test what happens when you mix components of different API versions.
We can have a handful of these, using a random seed so that the tests are consistent.
The goal is to cat…
-
This is an idea that was just mentioned during the meeting with the Solana team: property-test some invariants of Lido.
One great way of doing this is to encode every operation in a data structure,…
ruuda updated
3 years ago
-
We'd like to have fuzz testing implemented for system calls to give us more confidence in the correctness of our system call handler checks.
We could develop our own framework, or use something whi…
-
### What version of Go are you using (`go version`)?
$ go version
go version devel go1.18-d4139083204 Fri Sep 24 07:22:13 2021 +0000 linux/amd64
### Does this issue reproduce with the l…
-
Hello!
I am inquiring to see if the project maintainers would support me submitting this repository to Google's OSSFuzz project? I would develop the necessary build scripts and fuzz targets to inte…
-
Consider the following test using `testing.F`:
```go
func FuzzAtoi(f *testing.F) {
for _, tc := range []struct {
s string
expected int
}{
{s: "1", expec…
-
Gitlab CI has introduced support for fuzz testing as a [service](https://docs.gitlab.com/ee/user/application_security/coverage_fuzzing). Their service integrates with [go-fuzz](https://github.com/dvyu…
-
This issue discusses avenues for leveraging [fuzz testing](https://github.com/google/fuzzing/blob/master/docs/why-fuzz.md) in Envoy Mobile.
**Potential Areas for Fuzzing**:
1. Integration with the…
-
Using the tools from #379 uncovers several bugs. For example
```julia
fuzz_test(try_parseall_failure, product_token_fuzz(cutdown_tokens, 2))
fuzz_test(try_hook_failure, product_token_fuzz(cutdown…
c42f updated
11 months ago