Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for canMinimize (0.27 sec)

  1. src/internal/fuzz/fuzz.go

    					fmt.Fprintf(c.opts.Log, "failure while testing seed corpus entry: %s/%s\n", target, testName(result.entry.Parent))
    					stop(errors.New(result.crasherMsg))
    					break
    				}
    				if c.canMinimize() && result.canMinimize {
    					if c.crashMinimizing != nil {
    						// This crash is not minimized, and another crash is being minimized.
    						// Ignore this one and wait for the other one to finish.
    						if shouldPrintDebugInfo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/internal/fuzz/worker.go

    				canMinimize = false
    			}
    			result := fuzzResult{
    				limit:         input.limit,
    				count:         resp.Count,
    				totalDuration: resp.TotalDuration,
    				entryDuration: resp.InterestingDuration,
    				entry:         entry,
    				crasherMsg:    resp.Err,
    				coverageData:  resp.CoverageData,
    				canMinimize:   canMinimize,
    			}
    			w.coordinator.resultC <- result
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top