Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/go/testdata/script/test_fuzz_mutate_fail.txt

    [short] skip
    env GOCACHE=$WORK/cache
    
    ! go test -fuzz=FuzzReturn
    ! exists testdata
    
    ! go test -fuzz=FuzzSkip
    ! exists testdata
    
    ! go test -fuzz=FuzzFail
    ! exists testdata
    
    ! go test -fuzz=FuzzPanic
    ! exists testdata
    
    ! go test -fuzz=FuzzNilPanic
    ! exists testdata
    
    ! go test -fuzz=FuzzGoexit
    ! exists testdata
    
    ! go test -fuzz=FuzzExit
    ! exists testdata
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz.txt

    # Test fatal with seed corpus in f.Fuzz
    ! go test -run FuzzFatal fuzz_add_test.go
    ! stdout ^ok
    stdout FAIL
    stdout 'fatal here'
    
    # Test panic with seed corpus in f.Fuzz
    ! go test -run FuzzPanic fuzz_add_test.go
    ! stdout ^ok
    stdout FAIL
    stdout 'off by one error'
    
    # Test panic(nil) with seed corpus in f.Fuzz
    ! go test -run FuzzNilPanic fuzz_add_test.go
    ! stdout ^ok
    stdout FAIL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top