When running the reproduction with a regular generated fuzzer, I only get a backtrace, rather than having the full code used like shown in the README / that I was able to replicate in the parallel+chain tutorial in the readme
func Fuzz_TimerWheel_NewTimerWheel(f *testing.F) {
f.Fuzz(func(t *testing.T, data []byte) {
var min time.Duration
var max time.Duration
fz := fuzzer.NewFuzzer(data)
fz.Fill(&min, &max)
NewTimerWheel(min, max)
})
}
doesn't produce a length test description.. I suppose maybe it wouldn't, since presumably it's just a single function call?