Re: [go-nuts] Recommendation for Fuzzed Types without Native On-Disk Format

2021-02-11 Thread Jesper Louis Andersen
On Mon, Feb 8, 2021 at 10:07 PM Matt Proud wrote: > Suppose I am interested in fuzz testing an API using dvyukov/go-fuzz > , and the primary API under test > accepts relatively complex composite data types itself: func F(*Table) > error, where the types below

Re: [go-nuts] Recommendation for Fuzzed Types without Native On-Disk Format

2021-02-09 Thread 'Axel Wagner' via golang-nuts
I don't have a really good answer for you, but just in case it helps, I asked a loosely related question on Twitter once: https://twitter.com/TheMerovius/status/1068459958256246784 It's a different problem, but maybe some of the follow-up links can still help? In any case, please let me know if

[go-nuts] Recommendation for Fuzzed Types without Native On-Disk Format

2021-02-08 Thread Matt Proud
Hi all, I want to check the wisdom of the crowd on the following topic: Suppose I am interested in fuzz testing an API using dvyukov/go-fuzz , and the primary API under test accepts relatively complex composite data types itself: func F(*Table) error, where