Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shouldPrintDebugInfo (0.2 sec)

  1. src/internal/fuzz/fuzz.go

    						}
    						if !entryNew {
    							if shouldPrintDebugInfo() {
    								c.debugLogf(
    									"ignoring duplicate input which increased coverage, id: %s",
    									result.entry.Path,
    								)
    							}
    							break
    						}
    						c.updateCoverage(keepCoverage)
    						c.inputQueue.enqueue(result.entry)
    						c.interestingCount++
    						if shouldPrintDebugInfo() {
    							c.debugLogf(
    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

    					crasherMsg:  input.crasherMsg,
    					canMinimize: false,
    					limit:       input.limit,
    				}
    				if result.crasherMsg == "" {
    					result.crasherMsg = err.Error()
    				}
    			}
    			if shouldPrintDebugInfo() {
    				w.coordinator.debugLogf(
    					"input minimized, id: %s, original id: %s, crasher: %t, originally crasher: %t, minimizing took: %s",
    					result.entry.Path,
    					input.entry.Path,
    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