summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/42wim/go-ircevent/irc_test_fuzz.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/42wim/go-ircevent/irc_test_fuzz.go')
-rw-r--r--vendor/github.com/42wim/go-ircevent/irc_test_fuzz.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/github.com/42wim/go-ircevent/irc_test_fuzz.go b/vendor/github.com/42wim/go-ircevent/irc_test_fuzz.go
new file mode 100644
index 00000000..82202e1c
--- /dev/null
+++ b/vendor/github.com/42wim/go-ircevent/irc_test_fuzz.go
@@ -0,0 +1,14 @@
+// +build gofuzz
+
+package irc
+
+func Fuzz(data []byte) int {
+ b := bytes.NewBuffer(data)
+ event, err := parseToEvent(b.String())
+ if err == nil {
+ irc := IRC("go-eventirc", "go-eventirc")
+ irc.RunCallbacks(event)
+ return 1
+ }
+ return 0
+}