Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FuzzInstrumented (0.18 sec)

  1. src/cmd/go/internal/work/init.go

    // instrumentation is added. 'go test -fuzz' still works without coverage,
    // but it generates random inputs without guidance, so it's much less effective.
    func fuzzInstrumentFlags() []string {
    	if !platform.FuzzInstrumented(cfg.Goos, cfg.Goarch) {
    		return nil
    	}
    	return []string{"-d=libfuzzer"}
    }
    
    func instrumentInit() {
    	if !cfg.BuildRace && !cfg.BuildMSan && !cfg.BuildASan {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top