Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for keepCoverage (0.08 sec)

  1. src/internal/fuzz/worker.go

    		if err != nil {
    			retErr = err
    			if keepCoverage != nil {
    				// Now that we've found a crash, that's more important than any
    				// minimization of interesting inputs that was being done. Clear out
    				// keepCoverage to only minimize the crash going forward.
    				keepCoverage = nil
    			}
    			return true
    		}
    		// Minimization should preserve coverage bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    	// A zero timeout means no limit.
    	timeout time.Duration
    
    	// keepCoverage is a set of coverage bits that entry found that were not in
    	// the coordinator's combined set. When minimizing, the worker should find an
    	// input that preserves at least one of these bits. keepCoverage is nil for
    	// crashing inputs.
    	keepCoverage []byte
    }
    
    // coordinator holds channels that workers can use to communicate with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top