Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FuzzParseInputs (0.68 sec)

  1. tests/fuzz/fuzz.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package fuzz
    
    import (
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    )
    
    func FuzzParseInputs(data []byte) int {
    	_, _, err := crd.ParseInputs(string(data))
    	if err != nil {
    		return 0
    	}
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 03:26:36 UTC 2022
    - 783 bytes
    - Viewed (0)
  2. tests/fuzz/regression_test.go

    func TestFuzzers(t *testing.T) {
    	testedFuzzers := sets.New[string]()
    	cases := []struct {
    		name   string
    		fuzzer func([]byte) int
    	}{
    		{"FuzzConfigValidation", FuzzConfigValidation},
    		{"FuzzParseInputs", FuzzParseInputs},
    		{"FuzzParseMeshNetworks", FuzzParseMeshNetworks},
    		{"FuzzValidateMeshConfig", FuzzValidateMeshConfig},
    		{"FuzzInitContext", FuzzInitContext},
    		{"FuzzXds", FuzzXds},
    		{"FuzzAnalyzer", FuzzAnalyzer},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. tests/fuzz/oss_fuzz_build.sh

    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzConvertIngressV1alpha3 fuzz_convert_ingress_v1alpha3
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzParseInputs fuzz_parse_inputs
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzConfigValidation fuzz_config_validation
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzConfigValidation2 fuzz_config_validation2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top