Adding upstream version 0.0.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
b74d0ef785
commit
9eac69a0e2
41 changed files with 2631 additions and 0 deletions
18
fuzz_test.go
Normal file
18
fuzz_test.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
//go:build 1.18
|
||||
// +build 1.18
|
||||
|
||||
package ssh_config
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func FuzzDecode(f *testing.F) {
|
||||
f.Fuzz(func(t *testing.T, in []byte) {
|
||||
_, err := Decode(bytes.NewReader(in))
|
||||
if err != nil {
|
||||
t.Fatalf("decode %q: %v", string(in), err)
|
||||
}
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue