Skip to content

Commit

Permalink
Merge pull request #2 from kcalvinalvin/master
Browse files Browse the repository at this point in the history
Add fuzzing
  • Loading branch information
kcalvinalvin authored May 11, 2022
2 parents a68dcb0 + 12bcd56 commit 75e0bb7
Show file tree
Hide file tree
Showing 13 changed files with 615 additions and 128 deletions.
695 changes: 567 additions & 128 deletions accumulator_test.go

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
uint32(1125)
uint32(119)
uint32(1020)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
uint32(98)
uint32(7)
int64(7)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\t')
byte('j')
byte('\b')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\n')
byte('\x02')
byte('\x05')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\x1b')
byte('\x01')
byte('\x12')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\x03')
byte('\x13')
byte('\x03')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\x1b')
byte('\r')
byte('\x12')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('C')
byte('\x02')
byte('<')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\x01')
byte('\x01')
byte('\x01')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\x04')
byte('\x02')
byte('\x03')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
byte('\x06')
byte('\x02')
byte('\x05')
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
go test fuzz v1
uint32(3)
uint32(3)
int64(-53)

0 comments on commit 75e0bb7

Please sign in to comment.