File: fuzz_test.go

package info (click to toggle)
golang-github-mdlayher-netlink 1.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 368 kB
  • sloc: makefile: 5
file content (19 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//go:build gofuzz
// +build gofuzz

package netlink

import "testing"

func Test_fuzz(t *testing.T) {
	tests := []struct {
		name string
		s    string
	}{}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			_ = fuzz([]byte(tt.s))
		})
	}
}