Files
stun/fuzz_test.go
Aleksandr Razumov 14b144e1ae add stun
2016-04-25 15:17:50 +03:00

11 lines
152 B
Go

// +build gofuzz
package stun
import "testing"
func TestMessageType_FuzzerCrash1(t *testing.T) {
input := []byte("\x9c\xbe\x03")
FuzzType(input)
}