2021-01-12 23:10:10 +00:00
|
|
|
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2021-08-05 23:42:39 +01:00
|
|
|
//go:build gofuzz
|
2021-01-12 23:10:10 +00:00
|
|
|
// +build gofuzz
|
|
|
|
|
|
|
|
package disco
|
|
|
|
|
|
|
|
func Fuzz(data []byte) int {
|
|
|
|
m, _ := Parse(data)
|
|
|
|
|
|
|
|
newBytes := m.AppendMarshal(data)
|
|
|
|
parsedMarshall, _ := Parse(newBytes)
|
|
|
|
|
|
|
|
if m != parsedMarshall {
|
|
|
|
panic("Parsing error")
|
|
|
|
}
|
|
|
|
return 1
|
|
|
|
}
|