File: main.go

package info (click to toggle)
golang-github-tdewolff-parse 2.8.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 888 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
// +build gofuzz

package fuzz

import "github.com/tdewolff/parse/v2"

// Fuzz is a fuzz test.
func Fuzz(data []byte) int {
	_, _ = parse.Dimension(data)
	return 1
}