fuzz: change return values to 1 rather than 0 or -1

This allows gofuzz to store the mutating input as coverage if it reaches
any new coverage, even if it didn't make it to the end of the test.
This commit is contained in:
eugene
2020-10-09 06:53:18 -04:00
parent d26001a69a
commit f82653cb06
19 changed files with 24 additions and 24 deletions

View File

@@ -36,7 +36,7 @@ func harness(data []byte, emptyMsg wtwire.Message) int {
payloadLen := uint32(len(data)) - 2
if payloadLen > emptyMsg.MaxPayloadLength(0) {
// Ignore this input - max payload constraint violated.
return -1
return 1
}
msg, err := wtwire.ReadMessage(r, 0)
@@ -44,7 +44,7 @@ func harness(data []byte, emptyMsg wtwire.Message) int {
// go-fuzz generated []byte that cannot be represented as a
// wire message but we will return 0 so go-fuzz can modify the
// input.
return 0
return 1
}
// We will serialize the message into a new bytes buffer.