Skip to content

Is export FZDEBUG=repro=1 only useful for chained fuzzers? #18

@jasikpark

Description

@jasikpark

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions