Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FuzzInstrumented (0.15 sec)

  1. src/internal/platform/supported.go

    	switch goos {
    	case "darwin", "freebsd", "linux", "windows":
    		return true
    	default:
    		return false
    	}
    }
    
    // FuzzInstrumented reports whether fuzzing on goos/goarch uses coverage
    // instrumentation. (FuzzInstrumented implies FuzzSupported.)
    func FuzzInstrumented(goos, goarch string) bool {
    	switch goarch {
    	case "amd64", "arm64":
    		// TODO(#14565): support more architectures.
    		return FuzzSupported(goos, goarch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    			if !strings.Contains(out, tc.expectedError) {
    				t.Errorf("exited without expected error %q; got\n%s", tc.expectedError, out)
    			}
    		})
    	}
    }
    
    // libFuzzerSupported is a copy of the function internal/platform.FuzzInstrumented,
    // because the internal package can't be used here.
    func libFuzzerSupported(goos, goarch string) bool {
    	switch goarch {
    	case "amd64", "arm64":
    		// TODO(#14565): support more architectures.
    		switch goos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top