Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CrashPath (0.31 sec)

  1. src/testing/fuzz.go

    			f.result = fuzzResult{Error: err}
    			f.Fail()
    			fmt.Fprintf(f.w, "%v\n", err)
    			if crashErr, ok := err.(fuzzCrashError); ok {
    				crashPath := crashErr.CrashPath()
    				fmt.Fprintf(f.w, "Failing input written to %s\n", crashPath)
    				testName := filepath.Base(crashPath)
    				fmt.Fprintf(f.w, "To re-run:\ngo test -run=%s/%s\n", f.name, testName)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    	path string
    	err  error
    }
    
    func (e *crashError) Error() string {
    	return e.err.Error()
    }
    
    func (e *crashError) Unwrap() error {
    	return e.err
    }
    
    func (e *crashError) CrashPath() string {
    	return e.path
    }
    
    type corpus struct {
    	entries []CorpusEntry
    	hashes  map[[sha256.Size]byte]bool
    }
    
    // addCorpusEntries adds entries to the corpus, and optionally writes the entries
    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